mirror of
https://github.com/cc65/cc65.git
synced 2026-04-19 09:28:25 +00:00
0d9ae7cb70
use symbol from cbm_kernal.inc
18 lines
265 B
ArmAsm
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
|