SaithDagger
Programmer
Hey. Another question, and one that I likely won't be able to answer for myself tonight.
In Masm, code is acceptable as:
NUMADDR EQU [BP+6] ; address to store result
BUFFER EQU [BP+4] ; address to store input buffer
Whereas, in Nasm, this is unacceptable due to the assembly reading over this and needing an exact value first before assembling. What is the best work around for this?
Note: This is the first time either of these variables are inputted into the program. They are structured inside procedures.
Thanks in advance!
-SaithDagger
In Masm, code is acceptable as:
NUMADDR EQU [BP+6] ; address to store result
BUFFER EQU [BP+4] ; address to store input buffer
Whereas, in Nasm, this is unacceptable due to the assembly reading over this and needing an exact value first before assembling. What is the best work around for this?
Note: This is the first time either of these variables are inputted into the program. They are structured inside procedures.
Thanks in advance!
-SaithDagger