prog8/examples/test.p8
Irmen de Jong 1e63615592 tweaks
2022-04-02 18:04:41 +02:00

35 lines
673 B
Lua

%import textio
%zeropage basicsafe
; NOTE: meant to test to virtual machine output target (use -target vitual)
main {
sub start() {
; a "pixelshader":
; 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()
; }
}
}