Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

idt.h (175B)


      1 #include <stdint.h>
      2 
      3 #pragma once
      4 
      5 #ifndef IDT_H
      6 #define IDT_H
      7 
      8 void load_idt (int vec, uint64_t idt_handler);
      9 void interrupt_handler (struct interrupt_frame *frame);
     10 
     11 #endif