In NASM, these two instructions do the same thing:
mov WORD PTR [myVariable], 0xAA
mov WORD [myVariable], 0xAA
Is it necessary to include the "PTR"?
In NASM, these two instructions do the same thing:
mov WORD PTR [myVariable], 0xAA
mov WORD [myVariable], 0xAA
Is it necessary to include the "PTR"?