cc65/libsrc/pce/clock.s

34 lines
622 B
ArmAsm
Raw Normal View History

;
; clock_t clock (void);
;
2015-08-29 15:58:57 +02:00
.export _clock
2015-11-17 09:14:15 -05:00
.constructor initclock
2015-10-02 10:50:22 -04:00
2015-11-17 09:14:15 -05:00
.forceimport ticktock ; make sure that tickcount changes
2015-08-29 15:58:57 +02:00
.importzp sreg
2015-10-02 10:50:22 -04:00
.include "extzp.inc"
2015-07-12 14:27:24 +02:00
.proc _clock
2015-08-29 15:58:57 +02:00
lda tickcount+3
sta sreg+1
lda tickcount+2
sta sreg
ldx tickcount+1
lda tickcount
rts
.endproc
2015-07-16 16:54:40 +02:00
2015-11-17 09:14:15 -05:00
; Make the process clock start at zero.
.segment "ONCE"
2015-07-16 16:54:40 +02:00
initclock:
2015-08-29 15:58:57 +02:00
lda #0
ldx #3
@lp: sta tickcount,x
dex
bpl @lp
rts