mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-01-06 16:04:43 +08: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
|