prog8/examples/test.p8

30 lines
597 B
Plaintext
Raw Normal View History

%import textio
2022-04-03 15:07:26 +00:00
%zeropage dontuse
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 {
2022-04-03 13:25:32 +00:00
sub start() {
2022-04-05 18:46:34 +00:00
; a "pixelshader":
void syscall1(8, 0) ; enable lo res creen
ubyte shifter
2022-04-04 19:11:09 +00:00
2022-04-05 18:46:34 +00:00
shifter >>= 1
2022-04-05 18:46:34 +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-04 21:26:46 +00:00
}
2022-02-17 23:40:31 +00:00
}