Files
my-kern/kernel/cpu/timer.h
2021-02-10 18:56:47 +01:00

17 lines
224 B
C

//
// Created by rick on 9/22/19.
//
#ifndef MY_KERNEL_TIMER_H
#define MY_KERNEL_TIMER_H
#include <types.h>
int init_timer(u32 freq);
void print_current_tick();
void sleep(u32 milliseconds);
#endif //MY_KERNEL_TIMER_H