old-cross-binutils/gas/testsuite/gasp/crash1.asm
1994-01-31 16:53:03 +00:00

13 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