shithub: rgbds

ref: a96aa1725f6d0760d3df39c5a1a44eb196f7c8c6
dir: /test/asm/if-macro.asm/

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

if 1
	m
else
	WARN "12"
endc