15 lines
250 B
C
15 lines
250 B
C
#ifndef MINIOS_TIME_H
|
|
#define MINIOS_TIME_H
|
|
|
|
#include "type.h"
|
|
|
|
void timecounter_inc();
|
|
size_t clock();
|
|
|
|
void change_8253Counter0(int hertz);
|
|
#define TIMER0 0x40
|
|
#define TIMER_MODEREG 0x43
|
|
#define TIMER_MODE 0x34
|
|
#define TIMER_FREQ 1193182L
|
|
|
|
#endif |