Fixes/improvements from Stefan Haubenthal

git-svn-id: svn://svn.cc65.org/cc65/trunk@2873 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2004-01-09 17:39:55 +00:00
parent 95c0fb6e0b
commit e717b44d4d
3 changed files with 16 additions and 9 deletions

View File

@@ -4,8 +4,11 @@
; unsigned char __fastcall__ cbm_k_readst (void);
;
.export _cbm_k_readst
.import READST
.export _cbm_k_readst
.import READST
_cbm_k_readst = READST
_cbm_k_readst:
jsr READST
ldx #0 ; Clear high byte
rts