]> git.sur5r.net Git - cc65/blob - libsrc/plus4/kudtim.s
Fixed _textcolor definition.
[cc65] / libsrc / plus4 / kudtim.s
1 ;
2 ; 2002-11-22, Ullrich von Bassewitz
3 ; 2016-08-07, Greg King
4 ;
5 ; UDTIM replacement function
6 ;
7
8         .export         UDTIM
9
10         .include        "plus4.inc"
11
12 .segment        "LOWCODE"               ; Must go into low memory
13
14 .proc   UDTIM
15         sta     ENABLE_ROM              ; Enable the ROM
16         jsr     $FFEA                   ; Call the ROM routine
17         sta     ENABLE_RAM              ; Switch back to RAM
18         rts                             ; Return to caller
19 .endproc