mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-05-15 09:01:27 -07:00
9 lines
130 B
C
9 lines
130 B
C
#ifndef TIMER_H
|
|
#define TIMER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void timer_init(uint32_t frequency);
|
|
uint32_t timer_get_ticks(void);
|
|
|
|
#endif |