10 lines
96 B
NASM
10 lines
96 B
NASM
.ALTERNATE
|
|
! test of macro substitution around &s
|
|
|
|
|
|
foo MACRO a,b
|
|
x&a&b
|
|
ENDM
|
|
|
|
foo 3 2
|
|
END
|