Driver section separation

This commit is contained in:
xamidev
2024-08-05 19:33:16 +02:00
parent 4b6beb5ba9
commit f05347f73b
7 changed files with 10 additions and 9 deletions

View File

@@ -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

View File

@@ -1,4 +1,4 @@
#include "io.h"
#include "../kernel/io.h"
#include "serial.h"
int init_serial()

View File

@@ -1,4 +1,4 @@
#include "system.h"
#include "../kernel/system.h"
#include "../libc/stdio.h"
volatile unsigned long global_ticks = 0;

View File

@@ -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