Files
my-os-project2/kernel/hal/x86_64/pit.h
2025-08-22 12:37:48 +02:00

12 lines
168 B
C

#ifndef HAL_PIT_H_
#define HAL_PIT_H_
#include <stdint.h>
extern volatile uint32_t PIT_TICKS;
void pit_init(void);
void pit_wait(uint32_t ms);
#endif // HAL_PIT_H_