mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-09-22 10:43:39 -04:00
12 lines
134 B
NASM
12 lines
134 B
NASM
BITS 16
|
|
cmp ax, 0xFFFF
|
|
cmp eax, 0xFFFF_FFFF
|
|
|
|
BITS 32
|
|
cmp ax, 0xFFFF
|
|
cmp eax, 0xFFFF_FFFF
|
|
|
|
BITS 64
|
|
cmp ax, 0xFFFF
|
|
cmp eax, 0xFFFF_FFFF
|