mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
22 lines
269 B
ArmAsm
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
|
|
|