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>
26 lines
442 B
NASM
26 lines
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 |