Hello all, I have a question about variable initialization in MASM's assembly.
How can I initialize 2^32 to a variable and to what kind of variable should I initialize? DWORD or REAL4?
I try to do it like:
val DWORD 2.0E+32
When I assign var to a register(e.g. mov eax,val) and try to write the value, I see something that is not 2^32. I also tried it with REAL4 type. Result is still same.
So What I am doing wrong here?
Thanks in advance...