prog8/examples/test.p8

47 lines
937 B
Plaintext
Raw Normal View History

2021-03-16 22:06:28 +00:00
%import textio
2021-03-18 18:17:05 +00:00
%zeropage basicsafe
%option no_sysinit
2021-02-28 19:40:31 +00:00
main {
2021-03-15 21:24:09 +00:00
2021-03-18 18:17:05 +00:00
sub start() {
2021-04-01 20:10:04 +00:00
ubyte thing = otherblock.othersub()
txt.print_ub(thing) ; should print 21!
2021-03-22 00:45:19 +00:00
; str filename = "titlescreen.bin"
; ubyte success = cx16.vload(filename, 8, 0, $0000)
; if success {
; txt.print("load ok")
; cx16.VERA_DC_HSCALE = 64
; cx16.VERA_DC_VSCALE = 64
; cx16.VERA_L1_CONFIG = %00011111 ; 256c bitmap mode
; cx16.VERA_L1_MAPBASE = 0
; cx16.VERA_L1_TILEBASE = 0
; } else {
; txt.print("load fail")
; }
2021-03-16 22:06:28 +00:00
}
}
2021-03-18 18:17:05 +00:00
block3 {
ubyte returnvalue=10
sub thing()->ubyte {
return returnvalue
}
}
2021-04-01 20:10:04 +00:00
otherblock {
ubyte othervar=20
ubyte calcparam=10
sub calc(ubyte zz) -> ubyte {
return zz+1+block3.thing()
2021-04-01 20:10:04 +00:00
}
inline sub othersub() -> ubyte {
return calc(calcparam)
}
}