1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-19 09:28:25 +00:00
Files
cc65/libsrc/plus4/kgetin.s
T
Bob Andrews 0d9ae7cb70 Update kgetin.s
use symbol from cbm_kernal.inc
2025-05-25 03:44:36 +02:00

18 lines
265 B
ArmAsm

.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