0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-07-24 10:25:42 -04:00
nasm/test/pushp.asm
H. Peter Anvin b6407947a0 test: add some new simple tests
Some simple tests used during debugging; no reason not to keep them
around.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2024-08-11 21:35:58 -07:00

16 lines
160 B
NASM

bits 64
pushp rax
pushp rcx
pushp rdx
pushp rbx
pushp rsp
pushp rbp
pushp rsi
pushp rdi
%assign rn 8
%rep 24
pushp r %+ rn
%assign rn rn+1
%endrep