mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
22 lines
221 B
ArmAsm
22 lines
221 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 2003-12-19
|
||
|
;
|
||
|
; RDTIM kernal call
|
||
|
;
|
||
|
|
||
|
.export RDTIM
|
||
|
.import time : zeropage
|
||
|
|
||
|
|
||
|
.proc RDTIM
|
||
|
|
||
|
sei
|
||
|
lda time+0
|
||
|
ldx time+1
|
||
|
ldy time+2
|
||
|
cli
|
||
|
rts
|
||
|
|
||
|
.endproc
|
||
|
|