mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-10 04:23:24 -04:00
20 lines
367 B
C
20 lines
367 B
C
#ifndef __KOS_32_SYS_H__
|
|
#define __KOS_32_SYS_H__
|
|
|
|
#include "stddef.h"
|
|
|
|
static inline uint32_t _ksys_get_date(void)
|
|
{
|
|
uint32_t val;
|
|
asm volatile ("int $0x40":"=a"(val):"a"(29));
|
|
return val;
|
|
}
|
|
|
|
static inline uint32_t _ksys_get_system_clock(void)
|
|
{
|
|
uint32_t val;
|
|
asm volatile ("int $0x40":"=a"(val):"a"(3));
|
|
return val;
|
|
}
|
|
|
|
#endif |