mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
14 lines
87 B
NASM
14 lines
87 B
NASM
|
|
|
|
.MACRO foo a b c=a
|
|
\a \b \c \d
|
|
.ENDM
|
|
|
|
foo 1 2
|
|
foo 1 2 3 4
|
|
foo 1
|
|
foo
|
|
|
|
|
|
.END
|