Merge pull request #2485 from SvenMichaelKlose/add_plus4_getin_wrapper

Add Plus/4 wrapper for KERNAL's GETIN.
This commit is contained in:
Bob Andrews
2025-05-25 03:58:00 +02:00
committed by GitHub

17
libsrc/plus4/kgetin.s Normal file
View File

@@ -0,0 +1,17 @@
.export GETIN
.scope KERNAL
.include "cbm_kernal.inc"
.endscope
.include "plus4.inc"
.segment "LOWCODE" ; Stay out of ROM area.
.proc GETIN
sta ENABLE_ROM
jsr KERNAL::GETIN
sta ENABLE_RAM
rts
.endproc