mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-02-17 17:19:35 +08:00
8 lines
82 B
NASM
8 lines
82 B
NASM
|
%define FOO(x) x
|
||
|
%ifndef FOO
|
||
|
%define FOO(x) _ %+ x
|
||
|
%endif
|
||
|
|
||
|
FOO(this):
|
||
|
jmp this
|