k-chow/k/events/pic/pit.h

13 lines
219 B
C
Raw Normal View History

#ifndef PIT_H
#define PIT_H
#define PIT_COUNTER_0 0x40
#define PIT_COUNTER_1 0x41
#define PIT_COUNTER_2 0x42
#define PIT_CONTROL_REGISTER 0x43
void pit_handler(void);
unsigned long gettick(void);
#endif /* !PIT_H */