]> git.sur5r.net Git - cc65/blob - libsrc/cbm/c_iobase.s
Adjusted C declarations to the changed static driver names.
[cc65] / libsrc / cbm / c_iobase.s
1 ;
2 ; Ullrich von Bassewitz, 03.06.1999
3 ;
4 ; unsigned cbm_k_iobase (void);
5 ;
6
7         .export         _cbm_k_iobase
8         .import         IOBASE
9
10 _cbm_k_iobase:                   
11         jsr     IOBASE
12         txa
13         pha
14         tya
15         tax
16         pla
17         rts