prog8/examples/test.p8

17 lines
315 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
%option no_sysinit
main {
2024-08-24 14:34:23 +02:00
sub start() {
uword @shared large = (320*240/8/8)
const uword WIDTH=320
uword x1 = ((WIDTH-256)/2 as uword) + 200
txt.print_uw(x1)
txt.nl()
x1 = ((WIDTH-256)/2) + 200
txt.print_uw(x1)
2024-07-21 13:35:28 +02:00
}
}