kern/kernel/cpu/idt.h
2025-04-04 12:00:48 -04:00

16 lines
185 B
C

/**
* @file idt.h
*
* @author Freya Murphy <freya@freyacat.org>
*
* IDT functions
*/
#ifndef IDT_H_
#define IDT_H_
#include <stdint.h>
void idt_init(void);
#endif /* idt.h */