#include #include #include static void pit_handler(void) { } void irq_handler(uint8_t irq_number) { switch (irq_number) { case 0: pit_handler(); break; case 1: keyboard_handler(); break; default: printf("Unhandled IRQ %u\n", irq_number); break; } }