mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 15:05:14 +00:00
34 lines
577 B
ArmAsm
34 lines
577 B
ArmAsm
;
|
|
; clock_t clock (void);
|
|
;
|
|
|
|
.include "gamate.inc"
|
|
.include "extzp.inc"
|
|
|
|
.export _clock
|
|
.forceimport ticktock
|
|
.importzp sreg
|
|
.constructor initclock
|
|
|
|
|
|
.proc _clock
|
|
|
|
lda tickcount+3
|
|
sta sreg+1
|
|
lda tickcount+2
|
|
sta sreg
|
|
ldx tickcount+1
|
|
lda tickcount
|
|
rts
|
|
|
|
.endproc
|
|
|
|
.segment "INIT"
|
|
initclock:
|
|
lda #0
|
|
ldx #3
|
|
@lp: sta tickcount,x
|
|
dex
|
|
bpl @lp
|
|
rts
|