You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
netsurf/frontends/kolibrios/kolibri_os.c

12 lines
179 B

unsigned int sys_uptime(void)
{
unsigned int uptime;
__asm__ __volatile__(
"int $0x40 \n\t"
:"=a"(uptime)
:"a"(26),"b"(9));
return uptime / 100;
}