From 457a2117706cdaee34f894e67c89da7bf29f6143 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Mon, 12 Apr 2021 10:28:04 +0200 Subject: [PATCH] Refactoring --- src/Makefile | 4 ++-- src/bringelle.c | 1 - src/core/gdt.h | 3 +++ src/{int => core}/idt.c | 4 ++-- src/{int => core}/idt.h | 0 src/{int => core}/int.S | 0 src/{int => drivers}/8042.c | 2 +- src/{int => drivers}/8042.h | 0 src/{core => drivers}/framebuffer.c | 0 src/{core => drivers}/framebuffer.h | 2 +- src/{int => drivers}/pic.c | 0 src/{int => drivers}/pic.h | 0 src/libc/stdio.h | 2 +- 13 files changed, 10 insertions(+), 8 deletions(-) rename src/{int => core}/idt.c (94%) rename src/{int => core}/idt.h (100%) rename src/{int => core}/int.S (100%) rename src/{int => drivers}/8042.c (87%) rename src/{int => drivers}/8042.h (100%) rename src/{core => drivers}/framebuffer.c (100%) rename src/{core => drivers}/framebuffer.h (95%) rename src/{int => drivers}/pic.c (100%) rename src/{int => drivers}/pic.h (100%) diff --git a/src/Makefile b/src/Makefile index 3643f77..85cae29 100644 --- a/src/Makefile +++ b/src/Makefile @@ -8,12 +8,12 @@ LD_SCRIPT := linker.ld BOOT_OBJ := $(addsuffix .o,$(basename $(shell find ./boot -name "*.[c|S]" ! -name "boot.S"))) CORE_OBJ := $(addsuffix .o,$(basename $(shell find ./core -name "*.[c|S]"))) LIBC_OBJ := $(addsuffix .o,$(basename $(shell find ./libc -name "*.[c|S]"))) -INT_OBJ := $(addsuffix .o,$(basename $(shell find ./int -name "*.[c|S]"))) +DRIVERS_OBJ := $(addsuffix .o,$(basename $(shell find ./drivers -name "*.[c|S]"))) all: $(EXEC) -$(EXEC): boot/boot.o $(BOOT_OBJ) $(CORE_OBJ) $(LIBC_OBJ) $(INT_OBJ) bringelle.o +$(EXEC): boot/boot.o $(BOOT_OBJ) $(CORE_OBJ) $(LIBC_OBJ) $(DRIVERS_OBJ) bringelle.o ld -n -T $(LD_SCRIPT) -nostdlib -o bringelle $^ %.o: %.S diff --git a/src/bringelle.c b/src/bringelle.c index 49670e8..b0ddec6 100644 --- a/src/bringelle.c +++ b/src/bringelle.c @@ -1,5 +1,4 @@ #include "libc/stdio.h" -#include "int/pic.h" #include "boot/multiboot.h" #include "core/mem.h" #include "core/gdt.h" diff --git a/src/core/gdt.h b/src/core/gdt.h index f010891..246ddbe 100644 --- a/src/core/gdt.h +++ b/src/core/gdt.h @@ -72,6 +72,9 @@ void gdt_memcpy(); */ void gdt_write_entry(GDT_ENTRY entry, u32 id); +/** + * Extract the base from the user data segment + */ int gdt_user_ds_base(); #endif diff --git a/src/int/idt.c b/src/core/idt.c similarity index 94% rename from src/int/idt.c rename to src/core/idt.c index e3e71e8..4e08d62 100644 --- a/src/int/idt.c +++ b/src/core/idt.c @@ -15,7 +15,7 @@ INT_SYSCALL; void idt_init(){ - // Map first default 32 entries + // Map first default 32 entries for(int i=0;i