mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
733cbb3197
Using hidden files are rather antisocial, and rather pointless in this particular context. Change .stdout and .stderr to simply stdout and stderr. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
16 lines
303 B
NASM
16 lines
303 B
NASM
;Testname=test; Arguments=-fbin -or13.bin; Files=stdout stderr r13.bin
|
|
|
|
bits 64
|
|
mov rax,[rbx]
|
|
mov rax,[rbx*4]
|
|
mov rax,[rbx+rbx*2]
|
|
mov rax,[r13+rbx*2]
|
|
mov rax,[rbp]
|
|
mov rax,[rbp*4]
|
|
mov rax,[rbp+rbp*2]
|
|
mov rax,[rbp+r13*2]
|
|
mov rax,[r13]
|
|
mov rax,[r13*4]
|
|
mov rax,[r13+rbp*2]
|
|
mov rax,[r13+r13*2]
|