prog8/examples/test.p8
Irmen de Jong 62d3f01948 fix name check in inline asm
this no longer removes a subroutine that is otherwise only called from inlined asm.
2023-11-21 01:26:50 +01:00

15 lines
161 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
%asm{{
jsr p8_test
}}
}
sub test() {
cx16.r0++
}
}