#ifndef HAZEL_PIT_H_ #define HAZEL_PIT_H_ #define PIT_CHAN0_DATA 0x40 #define PIT_CHAN1_DATA 0x41 #define PIT_CHAN2_DATA 0x42 #define PIT_MODE_CMD 0x43 #define PIT_MODE0 0 #define PIT_LOBYTE (1<<4) #define PIT_LOHIGH (3<<4) #define PIT_CHAN0 0 void pit_init(void); void pit_handler(void); #endif