blob: 99a811dfa9e240d7e7709ab23d8e537c14801ee9 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | /**
 * @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 */
 |