2022-05-22 15:34:08 +00:00
|
|
|
%import textio
|
2022-06-05 12:21:10 +00:00
|
|
|
;%import test_stack
|
2022-06-04 15:18:24 +00:00
|
|
|
%zeropage basicsafe
|
2022-03-13 11:52:12 +00:00
|
|
|
|
2022-03-24 23:17:41 +00:00
|
|
|
; NOTE: meant to test to virtual machine output target (use -target vitual)
|
|
|
|
|
2022-06-08 19:05:03 +00:00
|
|
|
other {
|
|
|
|
ubyte variable = 40
|
|
|
|
ubyte var2=2
|
|
|
|
|
|
|
|
sub func1(ubyte arg) -> ubyte {
|
|
|
|
txt.print_ub(arg)
|
|
|
|
txt.spc()
|
|
|
|
return arg*var2
|
|
|
|
}
|
|
|
|
|
|
|
|
sub inliner() -> ubyte {
|
|
|
|
return func1(variable)
|
|
|
|
}
|
|
|
|
|
|
|
|
sub inliner2() {
|
|
|
|
txt.print_ub(22)
|
|
|
|
return
|
|
|
|
}
|
2022-05-22 15:34:08 +00:00
|
|
|
|
2022-06-08 19:05:03 +00:00
|
|
|
}
|
|
|
|
|
2022-06-08 21:57:01 +00:00
|
|
|
main {
|
2022-06-08 19:05:03 +00:00
|
|
|
|
2022-05-22 21:38:46 +00:00
|
|
|
; sub ands(ubyte arg, ubyte b1, ubyte b2, ubyte b3, ubyte b4) -> ubyte {
|
|
|
|
; return arg>b1 and arg>b2 and arg>b3 and arg>b4
|
|
|
|
; }
|
|
|
|
;
|
|
|
|
; sub ors(ubyte arg, ubyte b1, ubyte b2, ubyte b3, ubyte b4) -> ubyte {
|
|
|
|
; return arg==b1 or arg==b2 or arg==b3 or arg==b4
|
|
|
|
; }
|
2022-05-22 21:11:22 +00:00
|
|
|
|
2022-05-22 21:38:46 +00:00
|
|
|
; sub mcCarthy() {
|
|
|
|
; ubyte @shared a
|
|
|
|
; ubyte @shared b
|
|
|
|
;
|
|
|
|
; txt.print_ub(ands(10, 2,3,4,5))
|
|
|
|
; txt.spc()
|
|
|
|
; txt.print_ub(ands(10, 20,3,4,5))
|
|
|
|
; txt.spc()
|
|
|
|
; txt.print_ub(ors(10, 2,3,40,5))
|
|
|
|
; txt.spc()
|
|
|
|
; txt.print_ub(ors(10, 1,10,40,5))
|
|
|
|
; txt.spc()
|
|
|
|
; }
|
2022-05-22 15:34:08 +00:00
|
|
|
|
2022-06-08 19:05:03 +00:00
|
|
|
|
2022-06-06 11:21:45 +00:00
|
|
|
sub start() {
|
|
|
|
; mcCarthy()
|
2022-06-08 19:05:03 +00:00
|
|
|
|
|
|
|
other.inliner2()
|
|
|
|
other.inliner2()
|
|
|
|
rnd()
|
|
|
|
void other.inliner()
|
|
|
|
void other.inliner()
|
|
|
|
|
|
|
|
ubyte derp = other.inliner() * other.inliner() ; TODO inline this (was $207 bytes size)
|
|
|
|
txt.print_ub(derp)
|
2022-06-06 12:18:12 +00:00
|
|
|
txt.nl()
|
2022-06-04 19:10:48 +00:00
|
|
|
|
2022-05-22 15:34:08 +00:00
|
|
|
|
2022-06-03 21:13:35 +00:00
|
|
|
|
2022-05-22 15:34:08 +00:00
|
|
|
; ; a "pixelshader":
|
2022-05-23 18:10:37 +00:00
|
|
|
; sys.gfx_enable(0) ; enable lo res screen
|
|
|
|
; ubyte shifter
|
|
|
|
;
|
|
|
|
; repeat {
|
|
|
|
; uword xx
|
|
|
|
; uword yy = 0
|
|
|
|
; repeat 240 {
|
|
|
|
; xx = 0
|
|
|
|
; repeat 320 {
|
|
|
|
; sys.gfx_plot(xx, yy, xx*yy + shifter as ubyte)
|
|
|
|
; xx++
|
|
|
|
; }
|
|
|
|
; yy++
|
|
|
|
; }
|
|
|
|
; shifter+=4
|
|
|
|
; }
|
2022-03-04 21:26:46 +00:00
|
|
|
}
|
2022-02-17 23:40:31 +00:00
|
|
|
}
|