blob: d2b6b3082e614b9c972051415193128315bda68e [file] [log] [blame]
.MACRO foo a b c=a
\a \b \c \d
.ENDM
foo 1 2
foo 1 2 3 4
foo 1
foo
.END