prog8/examples/test.p8
2022-03-27 11:48:44 +02:00

45 lines
924 B
Lua

%import textio
; NOTE: meant to test to virtual machine output target (use -target vitual)
main {
sub start() {
txt.clear_screen()
txt.print("Welcome to a prog8 pixel shader :-)\n")
ubyte bb = 10
uword ww = 123
bb <<= 4
ww <<= 5
txt.print("bb=")
txt.print_ub(bb)
txt.nl()
txt.print("ww=")
txt.print_uw(ww)
txt.nl()
sys.exit(99)
syscall1(8, 0) ; enable lo res creen
ubyte shifter
shifter >>= 1
repeat {
uword xx
uword yy = 0
repeat 240 {
xx = 0
repeat 320 {
syscall3(10, xx, yy, xx*yy + shifter) ; plot pixel
xx++
}
yy++
}
shifter+=4
txt.print_ub(shifter)
txt.nl()
}
}
}