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>
20 lines
342 B
NASM
20 lines
342 B
NASM
;Testname=test; Arguments=-fbin -olocal.bin; Files=stdout stderr local.bin
|
|
bits 32
|
|
|
|
%push bluttan
|
|
|
|
%define %$localsize 0
|
|
|
|
%stacksize flat
|
|
%local l1:qword, l2:dword, l3:dword, l4:qword
|
|
%arg a1:qword, a2:dword, a3:dword, a4:qword
|
|
|
|
mov eax,[a1]
|
|
mov ebx,[a2]
|
|
mov ecx,[a3]
|
|
mov edx,[a4]
|
|
mov [l1],eax
|
|
mov [l2],ebx
|
|
mov [l3],ecx
|
|
mov [l4],edx
|