shithub: rgbds

ref: c05334dfc10a3398e5381e90a1501a29a3624e59
dir: /test/asm/operator-precedence.asm/

View raw version
print: MACRO
	printv \1
	printt "\n"
ENDM

	print 1 == 1 || 1 == 2
	print (1 == 1) || (1 == 2)