prog8/examples/test.p8

73 lines
1.4 KiB
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
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() {
2022-03-28 23:16:26 +00:00
txt.clear_screen()
txt.setcc2(10,3,'*',$12)
txt.setcc2(11,3,'*',$02)
txt.setcc2(12,3,'*',$10)
txt.setcc2(10,4,'*',$d5)
txt.setcc2(11,4,'*',$05)
txt.setcc2(12,4,'*',$d0)
2022-03-27 22:18:56 +00:00
sys.wait(100)
cx16.screen_mode(0, false)
sys.wait(100)
2022-03-27 19:59:46 +00:00
; byte[] barr = [-1,-2,-3]
; uword[] uwarr = [1111,2222,3333]
;
; txt.print_b(barr[2])
; txt.spc()
; txt.print_uw(uwarr[2])
; txt.nl()
;
; barr[2] --
; uwarr[2] --
;
; txt.print_b(barr[2])
; txt.spc()
; txt.print_uw(uwarr[2])
; txt.nl()
;
; barr[2] ++
; uwarr[2] ++
;
; txt.print_b(barr[2])
; txt.spc()
; txt.print_uw(uwarr[2])
; txt.nl()
;
; sys.exit(99)
2022-03-27 19:59:46 +00:00
2022-03-27 12:23:01 +00:00
2022-03-28 21:49:44 +00:00
; the "pixelshader":
2022-03-27 23:49:43 +00:00
; 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()
; }
2022-03-04 21:26:46 +00:00
}
2022-02-17 23:40:31 +00:00
}