mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
20 lines
494 B
ArmAsm
20 lines
494 B
ArmAsm
|
;
|
||
|
; 2002-11-22, Ullrich von Bassewitz
|
||
|
; 2016-08-07, Greg King
|
||
|
;
|
||
|
; UDTIM replacement function
|
||
|
;
|
||
|
|
||
|
.export UDTIM
|
||
|
|
||
|
.include "plus4.inc"
|
||
|
|
||
|
.segment "LOWCODE" ; Must go into low memory
|
||
|
|
||
|
.proc UDTIM
|
||
|
sta ENABLE_ROM ; Enable the ROM
|
||
|
jsr $FFEA ; Call the ROM routine
|
||
|
sta ENABLE_RAM ; Switch back to RAM
|
||
|
rts ; Return to caller
|
||
|
.endproc
|