I'm posting you a question from which I'll dive down in a re-reading of lots of code. Let's say I call a function and pass it as argument a certain value x...translated in MASM, I get:
MOV ECX, DWORD PTR [EBP+8]
What shall ECX get? The actual value of EBP+8 (let's say the value of variable x) or the address of variable x?
ECX will contain some memory address or the actual value x?
Thank you all! Best regards! N.