prog8/examples/test.p8

22 lines
384 B
Plaintext
Raw Normal View History

%import textio
2024-12-22 03:47:35 +01:00
%zeropage basicsafe
%option no_sysinit
main {
2024-12-15 15:55:48 +01:00
sub start() {
uword[2] array1
array1[1] = $0122
txt.print_uwhex(array1[1], true)
txt.nl()
rol(array1[1])
txt.print_uwhex(array1[1], true)
txt.nl()
sys.set_carry()
ror(array1[1])
txt.print_uwhex(array1[1], true)
txt.nl()
}
}