shithub: rgbds

ref: 62b4f2b264c170db59701f45fe0f8fb7b7e64039
dir: /test/asm/code-after-endm-endr-endc.asm/

View raw version
println "start"

; will not define 'mac'
MACRO mac
	println \1
ENDM println "<_<"
	mac "argument"

; will not repeat
REPT 3
	println "hey!"
ENDR println "<_<"

IF 0
	println "skipped"
	bad syntax!?
ELSE println "<_<"
	println "else clause"
ENDC println "<_<"

IF 1
	println "if clause"
ELSE println "<_<"
	println "not skipped"
ENDC println "<_<"

println "done"