Fixed wrong filename for module c_getin.s

git-svn-id: svn://svn.cc65.org/cc65/trunk@5748 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2012-07-01 11:32:59 +00:00
parent 49542644df
commit af799c922f

14
libsrc/cbm/c_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