update zsmkit to version 2.4, including the new on_deck routines

This commit is contained in:
Irmen de Jong
2024-12-13 20:11:19 +01:00
parent 3675d7961b
commit 124ec77b58
3 changed files with 10 additions and 2 deletions

View File

@@ -1,8 +1,9 @@
TODO
====
update zsmkit to newest version that includes the on_deck routines when stabilized
@R0 parameters in normal subs are currently done via injected alias statements.
This means a bool parameter cannot be put into r0 because it is defined as a byte. (error: "using R0-R15 as register param requires integer type")
Can we inject them as regular memory mapped variables instead? &bool param = $02 (where $02 is the zp location of r0L)
...