13 lines
171 B
NASM
13 lines
171 B
NASM
|
.ALTERNATE
|
||
|
! test of string operators
|
||
|
define MACRO str1,str2
|
||
|
SDATA str1
|
||
|
SDATA "str2"
|
||
|
ENDM
|
||
|
define one" way to get "spaces,0
|
||
|
define "lot's! of <special>,chars%", 0
|
||
|
|
||
|
|
||
|
|
||
|
|