diff options
author | Danny Holman <dholman@gymli.xyz> | 2021-08-30 08:26:05 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.xyz> | 2021-08-30 08:26:05 -0500 |
commit | 7bf2c634fdb55d67affe74a2ed0a157610308942 (patch) | |
tree | c8a0d7bbc1b03669e10a8b18d6b453708e099378 /kernel | |
parent | 8cd620d25f31c4e0a87d6099accd9915e93a5815 (diff) |
i386: create idt.c and isr.s
Create files that add IDT support for i386.
Signed-off-by: Danny Holman <dholman@gymli.xyz>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/init.c b/kernel/init.c index d4514f8..195ce92 100644 --- a/kernel/init.c +++ b/kernel/init.c @@ -3,6 +3,6 @@ #include <kernel/serial.h> void kernel_main(void) { - //tty_init(); + tty_init(); kprintf("Hello world\n"); } |