7 ms·
Most assemblers for Intel syntax will let you write: add eax, [4] if you desire. Indeed, many disassemblers will follow suit in unambiguous cases. IDA, fo
by __init 4y ago
Most assemblers for Intel syntax will let you write:
add eax, [4]
if you desire. Indeed, many disassemblers will follow suit in unambiguous cases. IDA, for example, does this.
- colejohnson66 4y agoThe only time “DWORD PTR” is required is when (1) you're working with old assemblers, or (2) you're using a memory operand with an immediate: add eax, [4] ; inferred add [eax], 4 ; ambiguous add DWORD [eax], 4 ; explicit A disassembler may output it when not necessary, however.