Hello, dear NASM creators and others!
I have a problem.
How i can simply get offset of %LOCAL or %ARG vars in my FUNCTION ?
For example,
Proc:
%args var:dword
push var ; THIS DOES NOT WORK!!! I need offset...of var
..........
ret
I don't want to use
lea eax,[var]
push eax
I want to use (may be with some modifiers/directives) 1-line command, such as
push var ; where var is in %local or %arg
Thx.