mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-01-06 16:04:43 +08:00
27 lines
266 B
NASM
27 lines
266 B
NASM
|
BITS 16
|
||
|
cmp ax, 1
|
||
|
o16 cmp ax, 1
|
||
|
o32 cmp ax, 1
|
||
|
|
||
|
cmp eax, 1
|
||
|
o16 cmp eax, 1
|
||
|
o32 cmp eax, 1
|
||
|
|
||
|
BITS 32
|
||
|
cmp ax, 1
|
||
|
o16 cmp ax, 1
|
||
|
o32 cmp ax, 1
|
||
|
|
||
|
cmp eax, 1
|
||
|
o16 cmp eax, 1
|
||
|
o32 cmp eax, 1
|
||
|
|
||
|
BITS 64
|
||
|
cmp ax, 1
|
||
|
o16 cmp ax, 1
|
||
|
o32 cmp ax, 1
|
||
|
|
||
|
cmp eax, 1
|
||
|
o16 cmp eax, 1
|
||
|
o32 cmp eax, 1
|