shithub: rgbds

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

View raw version
print1: MACRO
	PRINTLN "\1"
ENDM

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


iprint: MACRO
	PRINTLN "{\1}"
ENDM

s EQUS "hello"
	iprint s