[BACK]Return to time.c CVS log [TXT][DIR] Up to [local] / sys / arch / jornada / stand / boot

File: [local] / sys / arch / jornada / stand / boot / time.c (download)

Revision 1.1, Tue Mar 4 16:09:00 2008 UTC (16 years, 3 months ago) by nbrk
Branch point for: MAIN

Initial revision

#include <sys/types.h>

#include "libsa.h"

time_t
getsecs(void)
{
	uint32_t count;

	__asm volatile ("mrc p6, 0, %0, c3, c1, 0" : "=r" (count));
	return ((0xffffffff - count) / 12500000);
}