prog8/examples/test.p8

45 lines
924 B
Plaintext
Raw Normal View History

%import textio
2022-03-13 11:52:12 +00:00
; NOTE: meant to test to virtual machine output target (use -target vitual)
2021-10-30 13:15:11 +00:00
main {
sub start() {
txt.clear_screen()
txt.print("Welcome to a prog8 pixel shader :-)\n")
2022-03-27 09:48:44 +00:00
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)
2022-02-27 15:27:02 +00:00
2022-03-23 00:52:01 +00:00
syscall1(8, 0) ; enable lo res creen
ubyte shifter
2022-02-27 15:27:02 +00:00
2022-03-25 19:22:41 +00:00
shifter >>= 1
2022-03-23 00:52:01 +00:00
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
2022-03-25 19:22:41 +00:00
txt.print_ub(shifter)
txt.nl()
2022-03-23 00:52:01 +00:00
}
2022-03-04 21:26:46 +00:00
}
2022-02-17 23:40:31 +00:00
}