mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
The --bits option makes this pointless. Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
22 lines
307 B
NASM
22 lines
307 B
NASM
%macro error 1+
|
|
%ifdef ERROR
|
|
%1
|
|
%endif
|
|
%endmacro
|
|
|
|
add edx,-1
|
|
add edx,byte -1
|
|
add edx,dword -1
|
|
|
|
|
|
error add [ebx],-1
|
|
add [edx],byte -1
|
|
add [edx],dword -1
|
|
|
|
add byte [ebx],-1
|
|
add byte [edx],byte -1
|
|
error add byte [edx],dword -1
|
|
|
|
add dword [ebx],-1
|
|
add dword [edx],byte -1
|
|
add dword [edx],dword -1
|