Driver section separation
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#include "io.h"
|
||||
#include "../kernel/io.h"
|
||||
#include "../libc/stdio.h"
|
||||
#include "system.h"
|
||||
#include "../kernel/system.h"
|
||||
|
||||
#define KEYBOARD_BUFFER_SIZE 256
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "io.h"
|
||||
#include "../kernel/io.h"
|
||||
#include "serial.h"
|
||||
|
||||
int init_serial()
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "system.h"
|
||||
#include "../kernel/system.h"
|
||||
#include "../libc/stdio.h"
|
||||
|
||||
volatile unsigned long global_ticks = 0;
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "../libc/stdio.h"
|
||||
#include "serial.h"
|
||||
#include "../drivers/serial.h"
|
||||
#include "gdt.h"
|
||||
#include "idt.h"
|
||||
#include "system.h"
|
||||
@@ -33,7 +33,7 @@ int kmain(int retvalue)
|
||||
clear();
|
||||
|
||||
colorputs(ascii_title, 10);
|
||||
colorputs(" by @xamidev - star the repo for a cookie!\n\n", 11);
|
||||
colorputs(" by @xamidev - star the repo for a cookie!\n\n", 14);
|
||||
|
||||
// TODO: Grub modules to load programs
|
||||
|
||||
|
||||
Reference in New Issue
Block a user