1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00
cc65/libsrc/plus4/krdtim.s

23 lines
506 B
ArmAsm
Raw Permalink Normal View History

;
; Ullrich von Bassewitz, 22.11.2002
;
; RDTIM replacement function
;
.export RDTIM
.include "plus4.inc"
; Read the clock from the zero page to avoid banking in the ROM
.proc RDTIM
sei ; No interrupts
lda TIME+2
ldx TIME+1
ldy TIME ; Read the time
cli ; Allow interrupts
rts ; Return to caller
.endproc