prog8/compiler/examples/test.p8

16 lines
336 B
Plaintext
Raw Normal View History

%import c64utils
2018-10-16 00:26:35 +00:00
~ main {
2018-11-11 17:19:08 +00:00
sub start() {
return ending(true) ;; @todo fix argument passing!
2018-12-11 00:54:51 +00:00
sub ending(success: ubyte) {
c64scr.print_byte_decimal(success)
c64scr.print_byte_decimal(success)
c64scr.print_byte_decimal(success)
c64.CHROUT('\n')
2018-12-11 00:54:51 +00:00
}
}
}