mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
20 lines
327 B
ArmAsm
20 lines
327 B
ArmAsm
;
|
|
; Marc 'BlackJack' Rintsch, 20.03.2001
|
|
;
|
|
; unsigned char __fastcall__ cbm_k_chkin (unsigned char FN);
|
|
;
|
|
|
|
.include "cbm.inc"
|
|
|
|
.export _cbm_k_chkin
|
|
|
|
|
|
_cbm_k_chkin:
|
|
tax
|
|
jsr CHKIN
|
|
ldx #0 ; Clear high byte
|
|
bcs @NotOk
|
|
txa
|
|
@NotOk: rts
|
|
|