13 lines
201 B
C
13 lines
201 B
C
/*
|
|
* @author xamidev <xamidev@riseup.net>
|
|
* @brief PIT functions
|
|
* @license GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef TIMER_H
|
|
#define TIMER_H
|
|
|
|
void timer_init();
|
|
void timer_wait(unsigned int wait_ticks);
|
|
|
|
#endif |