diff options
author | Danny Holman <dholman@gymli.xyz> | 2021-09-28 09:04:01 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.xyz> | 2021-09-28 09:04:38 -0500 |
commit | 0ad50c878838640ce53c202ab028d7b2c5810fe6 (patch) | |
tree | 77f189f1369a31b1941dfc5cacb8da71fe343aca /arch/i386/kernel/serial.c | |
parent | 7bf2c634fdb55d67affe74a2ed0a157610308942 (diff) |
arch: i386: add support for 8259 PIC
Add support for the 8259 programmable interrupt controller.
Signed-off-by: Danny Holman <dholman@gymli.xyz>
Diffstat (limited to 'arch/i386/kernel/serial.c')
-rw-r--r-- | arch/i386/kernel/serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/serial.c b/arch/i386/kernel/serial.c index 20bd8f9..58163cb 100644 --- a/arch/i386/kernel/serial.c +++ b/arch/i386/kernel/serial.c @@ -1,7 +1,7 @@ #include <kernel/serial.h> +#include <kernel/pic.h> #include <kernel/string.h> #include <stddef.h> -#include "pic.h" #define PORT 0x3f8 |