]> git.sur5r.net Git - cc65/blob - libsrc/cbm/c_open.s
Patch by Stefan Haubenthal: Remove __fastcall__ in comments and/or the
[cc65] / libsrc / cbm / c_open.s
1 ;
2 ; Ullrich von Bassewitz, 03.06.1999
3 ;
4 ; unsigned char cbm_k_open (void);
5 ;
6
7         .export         _cbm_k_open
8         .import         OPEN
9
10
11 _cbm_k_open:
12         jsr     OPEN
13         ldx     #0              ; Clear high byte
14         bcs     @NotOk
15         txa
16 @NotOk: rts