prog8/examples/test.p8

19 lines
388 B
Plaintext
Raw Normal View History

%import textio
2020-12-07 22:29:34 +00:00
%import diskio
%import floats
2020-12-10 22:30:58 +00:00
%import graphics
%zeropage basicsafe
%import test_stack
2020-12-08 00:02:38 +00:00
%option no_sysinit
main {
2020-12-10 22:30:58 +00:00
sub start () {
2020-12-11 20:05:03 +00:00
uword scanline_data_ptr= $6000
uword pixptr = xx/8 + scanline_data_ptr ; TODO why is this code so much larger than the following line:
uword pixptr2 = scanline_data_ptr + xx/8
2020-12-13 02:59:02 +00:00
2020-12-08 02:28:29 +00:00
test_stack.test()
}
2020-08-27 17:47:50 +00:00
}