Files
Espresso/include/drivers/pit.h

14 lines
181 B
C
Raw Normal View History

2025-05-28 14:41:02 -05:00
#ifndef _PIT_H
#define _PIT_H
#include <types.h>
2026-03-20 16:57:08 -05:00
#include <drivers/irq.h>
2025-06-17 15:50:07 -05:00
void pit_init(void);
2026-03-20 16:57:08 -05:00
registers_t* pit_handler(registers_t* regs);
2025-06-17 15:50:07 -05:00
void pit_sleep(uint64_t ms);
2025-05-28 14:41:02 -05:00
#endif