mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
18 lines
263 B
ArmAsm
18 lines
263 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
|
||
|
bcs @NotOk
|
||
|
lda #0
|
||
|
@NotOk: rts
|
||
|
|