mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-27 08:10:07 +08:00
23 lines
153 B
NASM
23 lines
153 B
NASM
|
bits 64
|
||
|
default rel
|
||
|
|
||
|
%use smartalign
|
||
|
|
||
|
section .text code align=32
|
||
|
|
||
|
align 32
|
||
|
|
||
|
nop
|
||
|
jz LDone
|
||
|
|
||
|
%rep 10
|
||
|
nop
|
||
|
%endrep
|
||
|
|
||
|
align 16
|
||
|
%rep 115
|
||
|
nop
|
||
|
%endrep
|
||
|
|
||
|
LDone:
|