oslab/kernel/include/timer.h
2023-02-11 16:48:16 +08:00

11 lines
131 B
C

#ifndef __TIMER_H__
#define __TIMER_H__
#include <stdint.h>
void init_timer();
void timer_handle();
uint32_t get_tick();
#endif