mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
62d3f01948
this no longer removes a subroutine that is otherwise only called from inlined asm.
15 lines
161 B
Lua
15 lines
161 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
%asm{{
|
|
jsr p8_test
|
|
}}
|
|
}
|
|
|
|
sub test() {
|
|
cx16.r0++
|
|
}
|
|
}
|