mirror of
https://github.com/cc65/cc65.git
synced 2025-04-05 13:37:17 +00:00
Merge pull request #2511 from coronax/fix-gettime-in-time.s
In time(), set the clock id to CLOCK_REALTIME when calling clock_gettime.
This commit is contained in:
commit
1771cb6fbd
@ -66,3 +66,9 @@
|
||||
.global _clock_settime
|
||||
.global _localtime
|
||||
.global _mktime
|
||||
|
||||
|
||||
;------------------------------------------------------------------------------
|
||||
; Constants
|
||||
|
||||
CLOCK_REALTIME = 0
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
.export _time
|
||||
|
||||
.import decsp1, ldeaxi
|
||||
.import pusha, ldeaxi
|
||||
.importzp ptr1, sreg, tmp1, tmp2
|
||||
|
||||
.include "time.inc"
|
||||
@ -22,7 +22,8 @@
|
||||
|
||||
; Get the time (machine dependent)
|
||||
|
||||
jsr decsp1
|
||||
lda #CLOCK_REALTIME
|
||||
jsr pusha
|
||||
lda #<time
|
||||
ldx #>time
|
||||
jsr _clock_gettime
|
||||
|
Loading…
x
Reference in New Issue
Block a user