mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-10-10 00:25:06 -04: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:
|