mirror of
https://github.com/cc65/cc65.git
synced 2025-02-03 07:30:52 +00:00
Added missing function cbm_k_getin, which was in cbm.h but an implementation
was missing. git-svn-id: svn://svn.cc65.org/cc65/trunk@5747 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
43ea0e3df9
commit
49542644df
@ -45,6 +45,7 @@ S_OBJS = c_acptr.o \
|
|||||||
c_clall.o \
|
c_clall.o \
|
||||||
c_close.o \
|
c_close.o \
|
||||||
c_clrch.o \
|
c_clrch.o \
|
||||||
|
c_getin.o \
|
||||||
c_iobase.o \
|
c_iobase.o \
|
||||||
c_listen.o \
|
c_listen.o \
|
||||||
c_load.o \
|
c_load.o \
|
||||||
|
14
libsrc/cbm/c_k_getin.s
Normal file
14
libsrc/cbm/c_k_getin.s
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
;
|
||||||
|
; 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
|
Loading…
x
Reference in New Issue
Block a user