mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-23 13:21:43 +08:00
16 lines
229 B
NASM
16 lines
229 B
NASM
|
! test of literal text operator
|
||
|
.ALTERNATE
|
||
|
foop MACRO str1,str2
|
||
|
SDATA "str1"
|
||
|
SDATA str2
|
||
|
ENDM
|
||
|
|
||
|
|
||
|
|
||
|
foop this< is a <string> with angle brackets>
|
||
|
foop this< is a string with spaces>
|
||
|
foop this < is a string with a !>>
|
||
|
|
||
|
|
||
|
END
|