mirror of
https://github.com/kenshineto/kern.git
synced 2025-04-21 20:57:25 +00:00
16 lines
185 B
C
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 */
|