shithub: rgbds

ref: f82edaa7ec6a2b9eed73f2a35819ae9e254cea54
dir: /test/asm/macro-arg-in-string.asm/

View raw version
print: MACRO
	PRINTT "\1"
	PRINTT "\n"
ENDM

	print John "Danger" Smith
	print \\A\nB
	print C\
D
	print E\!F ; illegal character escape


iprint: MACRO
	PRINTT "{\1}"
	PRINTT "\n"
ENDM

s EQUS "hello"
	iprint s