mirror of
https://github.com/irmen/prog8.git
synced 2024-11-27 03:50:27 +00:00
39 lines
771 B
Lua
39 lines
771 B
Lua
%import textio
|
|
%zeropage dontuse
|
|
|
|
|
|
; NOTE: meant to test to virtual machine output target (use -target vitual)
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
uword[] array = [1111,2222,3333,4444,5555]
|
|
|
|
txt.print_uw(array[3])
|
|
txt.nl()
|
|
|
|
; 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()
|
|
; }
|
|
}
|
|
}
|