diff options
author | Marvin Borner | 2021-04-14 14:34:38 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-14 14:34:38 +0200 |
commit | 462eaa9531b9e62916b02ab52759cd070de755d3 (patch) | |
tree | 71bb32daa5f8b4389c9d4ce1e42d66600090485f /kernel/main.c | |
parent | 212582f69dea4c99c292081b15ea526014b9ad44 (diff) |
Implemented some I/O interfaces
Diffstat (limited to 'kernel/main.c')
-rw-r--r-- | kernel/main.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/kernel/main.c b/kernel/main.c index 3b961f2..6cbc297 100644 --- a/kernel/main.c +++ b/kernel/main.c @@ -2,7 +2,6 @@ #include <boot.h> #include <cpu.h> -#include <fb.h> #include <fs.h> #include <ide.h> #include <interrupts.h> @@ -16,7 +15,6 @@ #include <rtc.h> #include <serial.h> #include <syscall.h> -#include <timer.h> PROTECTED extern u32 __stack_chk_guard; PROTECTED u32 __stack_chk_guard; @@ -49,11 +47,7 @@ int kernel_main(struct boot_info *boot) ata_install(); pci_install(); interrupts_install(); - timer_install(); - rtc_install(); - io_install(); - fb_install(boot->vid); - /* net_install(); */ + io_install(boot); // Enable drivers sti(); |