shithub: rgbds

ref: 3fbdba31bfa9af2660e2c7dc8d106d6110edd159
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