mirror of
https://git.nju.edu.cn/oslab2023/oslab.git
synced 2024-06-13 04:44:31 +08:00
11 lines
131 B
C
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
|