shithub: rgbds

ref: 4e712807d7a2add9f93a265b25638e6f1ca32ff3
dir: /test/asm/if-macro.asm/

View raw version
macro m
	if 0
		WARN "3"
	else
		WARN "5"
	endc
endm

if 1
	m
else
	WARN "12"
endc