]> git.sur5r.net Git - cc65/blob - libsrc/cbm/c_close.s
Adjusted C declarations to the changed static driver names.
[cc65] / libsrc / cbm / c_close.s
1 ;
2 ; Ullrich von Bassewitz, 03.06.1999
3 ;
4 ; void __fastcall__ cbm_k_close (unsigned char FN);
5 ;
6
7         .export         _cbm_k_close
8         .import         CLOSE
9
10 _cbm_k_close:
11         clc                  
12         jmp     CLOSE
13
14