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

22 lines
266 B
ArmAsm
Raw Permalink Normal View History

;
; 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