1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00
cc65/libsrc/cbm510/ksettim.s

22 lines
269 B
ArmAsm

;
; Ullrich von Bassewitz, 2003-12-19
;
; SETTIM kernal call
;
.export SETTIM
.import time : zeropage
.proc SETTIM
sei
sta time+0
stx time+1
sty time+2
cli
rts
.endproc