]> git.sur5r.net Git - cc65/blob - kciout.s
5f9f08bebd07dd4aa69b24bc8470366bb4bf969d
[cc65] / kciout.s
1 ;
2 ; Ullrich von Bassewitz, 22.11.2002
3 ;
4 ; CIOUT replacement function
5 ;
6
7         .export         CIOUT
8
9         .include        "plus4.inc"
10
11 .segment        "LOWCODE"               ; Must go into low memory
12
13 .proc   CIOUT
14         sta     ENABLE_ROM              ; Enable the ROM
15         jsr     $FFA8                   ; Call the ROM routine
16         sta     ENABLE_RAM              ; Switch back to RAM
17         rts                             ; Return to caller
18 .endproc
19
20