2023-12-09 20:48:22 +00:00
|
|
|
%import textio
|
2023-12-22 21:24:11 +00:00
|
|
|
%zeropage basicsafe
|
2023-12-09 20:48:22 +00:00
|
|
|
|
2023-10-15 20:44:34 +00:00
|
|
|
main {
|
2023-11-12 19:40:17 +00:00
|
|
|
sub start() {
|
2023-12-22 21:24:11 +00:00
|
|
|
uword function = &test
|
|
|
|
uword @shared derp = call(function)
|
|
|
|
txt.print_uw(derp)
|
2023-12-22 16:52:43 +00:00
|
|
|
txt.nl()
|
2023-12-22 21:24:11 +00:00
|
|
|
void call(function)
|
2023-12-14 20:16:14 +00:00
|
|
|
}
|
2023-12-19 21:59:01 +00:00
|
|
|
|
2023-12-22 21:24:11 +00:00
|
|
|
sub test() -> uword {
|
|
|
|
txt.print("test\n")
|
|
|
|
cx16.r0++
|
|
|
|
return 999
|
2023-12-22 16:52:43 +00:00
|
|
|
}
|
2023-12-19 21:59:01 +00:00
|
|
|
}
|