2019-07-08 12:56:36 +02:00
|
|
|
/**************************************
|
|
|
|
* iceOS Kernel *
|
|
|
|
* Developed by Marco 'icebit' Cetica *
|
|
|
|
* (c) 2019 *
|
|
|
|
* Released under GPLv3 *
|
|
|
|
* https://github.com/ice-bit/iceOS *
|
|
|
|
***************************************/
|
2019-07-03 18:12:57 +02:00
|
|
|
#include "drivers/tty.h"
|
2019-07-04 12:49:53 +02:00
|
|
|
#include "drivers/gdt.h"
|
2019-07-05 18:25:58 +02:00
|
|
|
#include "drivers/idt.h"
|
2019-07-06 01:09:10 +02:00
|
|
|
#include "drivers/timer.h"
|
2019-07-08 18:43:45 +02:00
|
|
|
#include "drivers/keyboard.h"
|
|
|
|
#include "shell/shell.h"
|
2019-07-03 18:12:57 +02:00
|
|
|
|
|
|
|
void kernel_main() {
|
2019-07-04 12:49:53 +02:00
|
|
|
gdt_setup(); // Setup Global Descriptor Table
|
2019-07-05 18:25:58 +02:00
|
|
|
idt_setup(); // Setup Interrupt Descriptor Table
|
2019-07-03 18:12:57 +02:00
|
|
|
|
2019-07-06 00:32:41 +02:00
|
|
|
clear_prompt();
|
2019-07-08 18:43:45 +02:00
|
|
|
iceos_ascii_logo();
|
2019-07-06 00:32:41 +02:00
|
|
|
init_prompt(); // Initialize frame buffer
|
2019-07-08 18:43:45 +02:00
|
|
|
init_keyboard(); // Initialize keyboard driver
|
2019-07-06 00:32:41 +02:00
|
|
|
|
2019-07-08 18:43:45 +02:00
|
|
|
// init_timer(1); // Only for debug purposes
|
2019-07-03 18:12:57 +02:00
|
|
|
}
|