mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
15 lines
190 B
ArmAsm
15 lines
190 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 2012-07-01
|
||
|
;
|
||
|
; unsigned char cbm_k_getin (void);
|
||
|
;
|
||
|
|
||
|
.export _cbm_k_getin
|
||
|
.import GETIN
|
||
|
|
||
|
|
||
|
_cbm_k_getin:
|
||
|
jsr GETIN
|
||
|
ldx #0
|
||
|
rts
|