19 lines
275 B
C
19 lines
275 B
C
//
|
|
// Created by rick on 9/22/19.
|
|
//
|
|
|
|
#ifndef MY_KERNEL_TIMER_H
|
|
#define MY_KERNEL_TIMER_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
int pit_int_frequency(uint32_t freq);
|
|
|
|
void print_current_tick();
|
|
|
|
uint32_t pit_get_tick();
|
|
|
|
void pit_sleep(uint32_t milliseconds);
|
|
|
|
#endif //MY_KERNEL_TIMER_H
|