Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7813189
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T04:45:52+00:00 2026-06-02T04:45:52+00:00

I have 2 assembly methods: DWToHex PROTO:DWORD modifies binary integer number of type DWORD

  • 0

I have 2 assembly methods:

  1. DWToHex PROTO:DWORD modifies binary integer number of type DWORD passed as in input parameter
    inside EAX into a hexadecimal representation, pointer to which is passed inside the single parameter. It is function used for debug purpose and it works fine.
  2. ProcA PROTO:DWORD – does nothing except for corrupting the content of EAX below is the code:
    (sorry for the formatting -c seems like the regular code formatting did not work here)

; #########################################################################

`.386                       ; set processor type`
`.model flat, stdcall       ; memory model & calling convention`
`option casemap :none       ; case sensitive`

`.code`

; #########################################################################

procA public addrSTD:DWORD

ret

ProcA   endp

; #########################################################################

end

Here is the debug trace:

.data

MsgBoxCaption4 db  "before calling", 0
MsgBoxCaption5 db  "after   calling", 0

.data?

N       DWORD   ?
NTXT        db 16 dup(?)

.code

mov eax, N
invoke  cx_DWToHex, addr NTXT
invoke  MessageBox, NULL, addr NTXT, addr MsgBoxCaption4, MB_OK ; show eax as hexadecimal

mov eax, N                      ;   ***** point A ****
invoke  ProcA, addr sdt         ;   ***** point B ****
;   mov eax, N
invoke  cx_DWToHex, addr NTXT
invoke  MessageBox, NULL, addr NTXT, addr MsgBoxCaption5, MB_OK ; show eax as hexadecimal

……………………………………………………………………………….

Question:
Why the content of EAX in point A in point B is not the same?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T04:45:54+00:00Added an answer on June 2, 2026 at 4:45 am

    The invoke directive you use for calling ProcA is supposed to get the address of ‘sdt’, and push it on the stack. More than likely, it generates code similar to

    lea eax, sdt
    push eax
    call ProcA
    

    which destroys the contents of eax. You can verify this by looking at the disassembly of the generated code.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a .NET assembly that has tens of classes and methods which are
I have a COM-Callable Wrapper on a .NET assembly. Some of the methods use
I have an external compiled assembly with HtmlHelper extension methods. I need to use
I have a .NET assembly which has defined a type T at compile time,
I am experiencing a strange compiler error with extension methods. I have an assembly
I have a number of test classes and methods that copy a particular directory
I have a C# library which has 2 methods. One returns an Integer and
Suppose I have an existing assembly, and some of the classes have overloaded methods,
I have a DataGrid which displays the available Classes and Methods in an Assembly.
I have a number of classes that call say Trace.WriteLine(LogSomethingClassSpecific), in various methods all

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.