mirror of
https://github.com/nikhilroxtomar/Simple-Operating-System-from-Scratch.git
synced 2026-02-01 13:45:47 +00:00
8 lines
107 B
C
8 lines
107 B
C
#ifndef __TIMER_H__
|
|
#define __TIMER_H__
|
|
|
|
void init_timer(unsigned int freq);
|
|
void timer_install();
|
|
|
|
#endif
|