mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-01-06 16:04:43 +08:00
27fe12d46e
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
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
|