mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-26 00:01:12 +00:00
17 lines
338 B
C
17 lines
338 B
C
|
#include <stdio.h>
|
||
|
#include <sys/types.h>
|
||
|
#include "osfreq.c"
|
||
|
|
||
|
long long cpucycles_sparc32cpuinfo(void)
|
||
|
{
|
||
|
long long result;
|
||
|
asm volatile(".word 2202075136; .word 2570088480; srl %%g1,0,%L0; mov %%o4,%H0"
|
||
|
: "=r" (result) : : "g1","o4");
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
long long cpucycles_sparc32cpuinfo_persecond(void)
|
||
|
{
|
||
|
return osfreq();
|
||
|
}
|