nasm/test/immsize2.asm
H. Peter Anvin (Intel) b4f74befce test/immsize2.asm: remove bits BITS
The --bits option makes this pointless.

Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
2026-03-03 08:54:01 -08:00

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