1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-14 16:33:00 +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:
uz 2012-07-01 11:30:41 +00:00
parent 43ea0e3df9
commit 49542644df
2 changed files with 15 additions and 0 deletions

View File

@ -45,6 +45,7 @@ S_OBJS = c_acptr.o \
c_clall.o \
c_close.o \
c_clrch.o \
c_getin.o \
c_iobase.o \
c_listen.o \
c_load.o \

14
libsrc/cbm/c_k_getin.s Normal file
View 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