prog8/examples/test.p8
2023-09-01 22:24:17 +02:00

15 lines
227 B
Lua

%import textio
%import math
%zeropage basicsafe
main {
sub start() {
ubyte index
ubyte[] t_index = [1,2,3,4,5]
ubyte nibble = 0
index -= t_index[4]
index -= t_index[nibble]
}
}