1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-20 02:17:07 +00:00

Add Plus/4 wrapper for KERNAL's GETIN.

This commit is contained in:
Sven Michael Klose
2024-08-18 21:57:06 +02:00
parent 925a589b90
commit 3f618d7de9
+14
View File
@@ -0,0 +1,14 @@
.export GETIN
.include "plus4.inc"
KERNAL_GETIN := $FFE4
.segment "LOWCODE" ; Stay out of ROM area.
.proc GETIN
sta ENABLE_ROM
jsr KERNAL_GETIN
sta ENABLE_RAM
rts
.endproc