shithub: rgbds

ref: 3e5cd8ce1ab3294217c14b05ccd4ee6caa28e280
dir: /test/asm/macro-syntax.asm/

View raw version

	old: MACRO ; comment
		println "out with the ", \1
	ENDM ; comment

	MACRO new ; comment
		println "in with the ", \1
	ENDM ; comment

	old 1
	new 2

	bad1: MACRO bad2 ; comment
		println "which?"
	ENDM ; comment