mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
32 lines
664 B
Lua
32 lines
664 B
Lua
%import floats
|
|
%import textio
|
|
%option no_sysinit
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
uword[4] words1 = [1,2,3,4]
|
|
uword[4] words2 = [99,88,77,66]
|
|
|
|
for cx16.r0 in words1 {
|
|
txt.print_uw(cx16.r0)
|
|
txt.spc()
|
|
}
|
|
txt.nl()
|
|
cx16.r0L = words2
|
|
sys.memsetw(words1, len(words1), 99)
|
|
for cx16.r0 in words1 {
|
|
txt.print_uw(cx16.r0)
|
|
txt.spc()
|
|
}
|
|
txt.nl()
|
|
sys.memcopy([2222,3333,4444,5555], words1, sizeof(words1))
|
|
for cx16.r0 in words1 {
|
|
txt.print_uw(cx16.r0)
|
|
txt.spc()
|
|
}
|
|
txt.nl()
|
|
}
|
|
}
|