nasm/test/jmp64.asm
H. Peter Anvin 733cbb3197 test: change .stdout/.stderr to stdout/stderr
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>
2008-10-06 18:28:42 -07:00

15 lines
279 B
NASM

;Testname=test; Arguments=-fbin -ojmp64.bin; Files=stdout stderr jmp64.bin
bits 64
jmp rcx
jmp [rax]
jmp qword [rax]
jmp far [rax]
jmp far dword [rax]
jmp far qword [rax]
call rcx
call [rax]
call qword [rax]
call far [rax]
call far dword [rax]
call far qword [rax]