2009-07-27 18:44:37 +00:00
|
|
|
;
|
|
|
|
; Stefan Haubenthal, 27.7.2009
|
2018-08-15 13:59:11 +00:00
|
|
|
; Oliver Schmidt, 14.8.2018
|
2009-07-27 18:44:37 +00:00
|
|
|
;
|
2018-08-15 13:59:11 +00:00
|
|
|
; int clock_gettime (clockid_t clk_id, struct timespec *tp);
|
2009-07-27 18:44:37 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
.include "time.inc"
|
|
|
|
.include "c64.inc"
|
|
|
|
|
2018-08-15 13:59:11 +00:00
|
|
|
.importzp sreg, tmp1, tmp2
|
|
|
|
.import pushax, pusheax, tosmul0ax, steaxspidx, incsp1, return0
|
2018-08-17 23:13:02 +00:00
|
|
|
.import TM, load_tenth
|
2009-07-27 18:44:37 +00:00
|
|
|
|
2009-09-24 19:40:36 +00:00
|
|
|
|
|
|
|
;----------------------------------------------------------------------------
|
2009-07-27 18:44:37 +00:00
|
|
|
.code
|
|
|
|
|
2018-08-15 13:59:11 +00:00
|
|
|
.proc _clock_gettime
|
|
|
|
|
|
|
|
jsr pushax
|
|
|
|
jsr pushax
|
2013-05-09 11:56:54 +00:00
|
|
|
|
|
|
|
lda CIA1_TODHR
|
|
|
|
sed
|
2018-08-17 22:13:38 +00:00
|
|
|
tax ; Save PM flag
|
|
|
|
and #%01111111
|
|
|
|
cmp #$12 ; 12 AM/PM
|
|
|
|
bcc @L1
|
|
|
|
sbc #$12
|
|
|
|
@L1: inx ; Get PM flag
|
|
|
|
bpl @L2
|
2013-05-09 11:56:54 +00:00
|
|
|
clc
|
|
|
|
adc #$12
|
2018-08-17 22:13:38 +00:00
|
|
|
@L2: cld
|
|
|
|
jsr BCD2dec
|
2013-05-09 11:56:54 +00:00
|
|
|
sta TM + tm::tm_hour
|
|
|
|
lda CIA1_TODMIN
|
|
|
|
jsr BCD2dec
|
|
|
|
sta TM + tm::tm_min
|
|
|
|
lda CIA1_TODSEC
|
|
|
|
jsr BCD2dec
|
|
|
|
sta TM + tm::tm_sec
|
|
|
|
lda #<TM
|
|
|
|
ldx #>TM
|
2018-08-15 13:59:11 +00:00
|
|
|
jsr _mktime
|
|
|
|
|
|
|
|
ldy #timespec::tv_sec
|
|
|
|
jsr steaxspidx ; Pops address pushed by 2. pushax
|
|
|
|
|
2018-08-17 23:13:02 +00:00
|
|
|
jsr load_tenth
|
2018-08-15 13:59:11 +00:00
|
|
|
jsr pusheax
|
|
|
|
lda CIA1_TOD10
|
|
|
|
ldx #>$0000
|
|
|
|
jsr tosmul0ax
|
|
|
|
|
|
|
|
ldy #timespec::tv_nsec
|
|
|
|
jsr steaxspidx ; Pops address pushed by 1. pushax
|
|
|
|
|
|
|
|
jsr incsp1
|
|
|
|
jmp return0
|
2009-07-27 18:44:37 +00:00
|
|
|
|
2018-08-15 13:59:11 +00:00
|
|
|
.endproc
|
|
|
|
|
|
|
|
;----------------------------------------------------------------------------
|
2009-07-27 18:44:37 +00:00
|
|
|
; dec = (((BCD>>4)*10) + (BCD&0xf))
|
2018-08-15 13:59:11 +00:00
|
|
|
|
|
|
|
.proc BCD2dec
|
|
|
|
|
|
|
|
tax
|
2013-05-09 11:56:54 +00:00
|
|
|
and #%00001111
|
|
|
|
sta tmp1
|
|
|
|
txa
|
2009-07-27 18:44:37 +00:00
|
|
|
and #%11110000 ; *16
|
|
|
|
lsr ; *8
|
|
|
|
sta tmp2
|
|
|
|
lsr
|
|
|
|
lsr ; *2
|
|
|
|
adc tmp2 ; = *10
|
|
|
|
adc tmp1
|
|
|
|
rts
|
|
|
|
|
|
|
|
.endproc
|