prog8/examples/test.p8

28 lines
511 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
%option no_sysinit
main {
sub start() {
uword[3] uwarray = [1111,2222,3333]
uword[3] @split uwarray_s = [1111,2222,3333]
ubyte[3] array = [11,22,33]
2024-03-12 22:27:15 +00:00
rol(array[1])
array[1] <<=1
ror(array[1])
array[1] >>=1
2024-03-12 22:27:15 +00:00
rol(uwarray[1])
uwarray[1] <<=1
ror(uwarray[1])
uwarray[1] >>=1
rol(uwarray_s[1])
uwarray_s[1] *=3
ror(uwarray_s[1])
uwarray_s[1] *=3
2024-03-01 18:45:16 +00:00
}
}