mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-10-10 00:25:06 -04:00
17 lines
179 B
NASM
17 lines
179 B
NASM
%macro bluttan 0
|
|
nop
|
|
%endmacro
|
|
|
|
%ifnmacro bluttan
|
|
%error "bluttan is a macro"
|
|
%endif
|
|
|
|
%ifmacro blej
|
|
%error "blej is not a macro"
|
|
%endif
|
|
|
|
%ifdef ERROR
|
|
%ifnmacro
|
|
%endif
|
|
%endif
|