OurOS 0.1
Operating System built by McGill Students
 
Loading...
Searching...
No Matches
irq.h
1#ifndef _IRQ_H
2#define _IRQ_H
3
4#include "idt.h"
5void keyboard_irq_handler(struct cpu_idt_interrupt_state *s);
6void timer_irq_handler(struct cpu_idt_interrupt_state *s);
7
8void cpu_irq_dispatch(int irq, struct cpu_idt_interrupt_state *s);
9#endif