Jan 28, 2016 at 5:17 PM
Join Date: Apr 5, 2013
Location: In my mind and of my body.
Posts: 1633
Age: 23
Are local variables... variables retained after a CALL function?
I would assume so but I've never actually had to work with them before (shocking, I know) and my code is acting buggy...
Something like this but more complicated
I would assume so but I've never actually had to work with them before (shocking, I know) and my code is acting buggy...
Code:
mov edx, 3
mov eax, 4
mov localvar1 eax
mov localvar2 edx
:function
push localvar1
push localvar2
call somerandomfunction
add esp 8
jmp :function



