mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-24 12:02:08 +00:00
Add more test cases for IF, REPT, and MACRO (#748)
This commit is contained in:
18
test/asm/multiple-else.asm
Normal file
18
test/asm/multiple-else.asm
Normal file
@@ -0,0 +1,18 @@
|
||||
if 0
|
||||
println "zero"
|
||||
else
|
||||
println "one"
|
||||
if 1
|
||||
println "A"
|
||||
else
|
||||
println "B"
|
||||
else
|
||||
println "C"
|
||||
else
|
||||
println "D"
|
||||
endc
|
||||
else
|
||||
println "two"
|
||||
else
|
||||
println "three"
|
||||
endc
|
||||
Reference in New Issue
Block a user