14 lines
181 B
C
14 lines
181 B
C
#ifndef _PIT_H
|
|
#define _PIT_H
|
|
|
|
#include <types.h>
|
|
|
|
|
|
#include <drivers/irq.h>
|
|
|
|
void pit_init(void);
|
|
registers_t* pit_handler(registers_t* regs);
|
|
void pit_sleep(uint64_t ms);
|
|
|
|
#endif
|