标签: assembly x86 nasm
在NASM中,这两条指令做同样的事情:
mov WORD PTR [myVariable], 0xAA mov WORD [myVariable], 0xAA
是否有必要包含" PTR"?