summaryrefslogtreecommitdiff
path: root/kernel/src/interrupts/interrupt_handlers.rs
blob: fec72cac5c7bd760f38c7b9364afb3c1b2f57b91 (plain)
1
2
3
4
5
6
7
8
use super::InterruptType;
use crate::io::qemu;
use x86_64::structures::idt::{InterruptStackFrame, PageFaultErrorCode};

pub extern "x86-interrupt" fn timer_handler(stack_frame: &mut InterruptStackFrame) {
    panic!("Timer interrupt recieved\n\n")
    // notify End of interrupt
}