nasm/test/vmread.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

26 lines
No EOL
442 B
NASM

;Testname=test; Arguments=-fbin -ovmread.bin; Files=stdout stderr vmread.bin
bits 32
vmread dword [0], eax
vmwrite eax, dword [0]
vmread [0], eax
vmwrite eax, [0]
bits 64
vmread qword [0], rax
vmwrite rax, qword [0]
vmread [0], rax
vmwrite rax, [0]
%ifdef ERROR
bits 32
vmread qword [0], eax
vmwrite eax, qword [0]
bits 64
vmread dword [0], eax
vmwrite eax, dword [0]
vmread qword [0], eax
vmwrite eax, qword [0]
%endif