]> git.sur5r.net Git - cc65/blob - libsrc/cbm/c_iobase.s
Updated to use cbm_kernal.inc. Whitespace cleanups
[cc65] / libsrc / cbm / c_iobase.s
1 ;
2 ; Ullrich von Bassewitz, 03.06.1999
3 ;
4 ; unsigned cbm_k_iobase (void);
5 ;
6
7         .include        "cbm.inc"
8
9         .export         _cbm_k_iobase
10
11 _cbm_k_iobase:
12         jsr     IOBASE
13         txa
14         pha
15         tya
16         tax
17         pla
18         rts