prog8/testsource/source5.ill
Irmen de Jong a228bcd8fc initial
2017-12-21 14:52:30 +01:00

25 lines
404 B
Plaintext

output prg
address $c000
~ test {
var .byte localvar = 33
return
}
~ main {
start
A=0
[$d020]=A
X=false
Y=true
return
;included_assembly
asminclude "included.source" test_include
;included_binary
asmbinary "included.binary"
asmbinary "included.binary" $40
asmbinary "included.binary" $40 $200
}