mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
13 lines
197 B
Lua
13 lines
197 B
Lua
%import textio
|
|
%import math
|
|
%option no_sysinit
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
uword sprite_reg
|
|
cx16.r0 = sprite_reg+1
|
|
cx16.vpoke(1, sprite_reg+1, 42)
|
|
}
|
|
}
|