1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-09 01:28:58 +00:00
cc65/libsrc/atari/settime.s
Oliver Schmidt 250e4ed9e0 Added dummy clock_settime() for the Atari.
Allow to build ip65/date65.
2018-08-18 01:36:56 +02:00

9 lines
201 B
ArmAsm

;
; int clock_settime (clockid_t clk_id, const struct timespec *tp);
;
.include "errno.inc"
.export _clock_settime
_clock_settime:
lda #ENOSYS
jmp __directerrno