mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 22:30:46 +00:00
19 lines
283 B
Lua
19 lines
283 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
sub start() {
|
|
cx16.r0L = main.dummy.variable
|
|
cx16.r1L = main.dummy.array[1]
|
|
cx16.r0++
|
|
}
|
|
|
|
sub dummy() {
|
|
ubyte variable
|
|
ubyte[] array = [1,2,3]
|
|
|
|
cx16.r0++
|
|
}
|
|
}
|