mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
18 lines
141 B
NASM
18 lines
141 B
NASM
|
|
section .text align=64
|
||
|
|
foo:
|
||
|
|
nop
|
||
|
|
nop
|
||
|
|
nop
|
||
|
|
ret
|
||
|
|
|
||
|
|
section .data align=64
|
||
|
|
bar:
|
||
|
|
db 0, 1, 2
|
||
|
|
|
||
|
|
section .text align=32
|
||
|
|
baz:
|
||
|
|
nop
|
||
|
|
nop
|
||
|
|
nop
|
||
|
|
ret
|