mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
19 lines
262 B
Lua
19 lines
262 B
Lua
%import c64utils
|
|
%zeropage basicsafe
|
|
%option enable_floats
|
|
|
|
~ main {
|
|
|
|
sub start() {
|
|
|
|
word zc
|
|
word qq = zc>>13
|
|
ubyte[] colors = [1,2,3,4,5,6,7,8]
|
|
|
|
uword bb = zc>>13
|
|
c64.SPCOL[0] = colors[(zc>>13) as byte + 4]
|
|
|
|
}
|
|
|
|
}
|