blob: 5c825c6ff118e5b73bebed203f0e7b1826013e38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
Copyright (C) 2025 Mikael Hildenborg
SPDX-License-Identifier: BSD-2-Clause
*/
#include <time.h>
#include <sys/times.h>
#include "atari-traps.h"
#include "atari-gem_errno.h"
// Defined and initialized in atari-crti.S
extern unsigned int _atari_4ba_at_prg_start;
// The memory location read is actually unsigned, so we cast that in the caller func.
int read200hzMem(void)
{
// 0x4ba is a privileged address only readable in supervisor mode.
return *((int*)0x4ba);
}
clock_t times(struct tms *buf)
{
// Call callback in supervisor mode.
unsigned long long int ticks200hz = (unsigned long long int)trap14_26(read200hzMem);
unsigned long long int libcticks = (ticks200hz * CLK_TCK) / 200;
unsigned long long int processticks = ((unsigned long long int)_atari_4ba_at_prg_start * CLK_TCK) / 200;
processticks = libcticks - processticks;
// For a single threaded system like the atari, only tms_utime is meaningful.
buf->tms_utime = (clock_t)processticks;
buf->tms_stime = 0;
buf->tms_cutime = 0;
buf->tms_cstime = 0;
return (clock_t)libcticks;
}
|