prog8/examples/test.p8
2023-12-03 02:45:26 +01:00

11 lines
163 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
const ubyte HEIGHT=240
uword zz = 823423
txt.print_uw(320*HEIGHT/8/8)
}
}