diff --git a/.gitignore b/.gitignore index 6f39445..e1747b1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ *.o -/src/kernel +/arch/kernel diff --git a/Makefile b/Makefile index 429470a..b43ed6d 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ run: all - qemu-system-i386 -kernel src/kernel -d guest_errors + qemu-system-i386 -kernel arch/kernel -d guest_errors all: - make all -C src + make all -C arch clean: - make clean -C src + make clean -C arch diff --git a/src/Makefile b/arch/Makefile similarity index 100% rename from src/Makefile rename to arch/Makefile diff --git a/src/boot.s b/arch/boot.s similarity index 100% rename from src/boot.s rename to arch/boot.s diff --git a/src/console.c b/arch/console.c similarity index 100% rename from src/console.c rename to arch/console.c diff --git a/src/console.h b/arch/console.h similarity index 100% rename from src/console.h rename to arch/console.h diff --git a/src/gdt.asm b/arch/gdt.asm similarity index 100% rename from src/gdt.asm rename to arch/gdt.asm diff --git a/src/gdt.c b/arch/gdt.c similarity index 100% rename from src/gdt.c rename to arch/gdt.c diff --git a/src/gdt.h b/arch/gdt.h similarity index 100% rename from src/gdt.h rename to arch/gdt.h diff --git a/src/idt.asm b/arch/idt.asm similarity index 100% rename from src/idt.asm rename to arch/idt.asm diff --git a/src/idt.c b/arch/idt.c similarity index 100% rename from src/idt.c rename to arch/idt.c diff --git a/src/idt.h b/arch/idt.h similarity index 100% rename from src/idt.h rename to arch/idt.h diff --git a/src/isr.asm b/arch/isr.asm similarity index 100% rename from src/isr.asm rename to arch/isr.asm diff --git a/src/isr.c b/arch/isr.c similarity index 100% rename from src/isr.c rename to arch/isr.c diff --git a/src/linker.ld b/arch/linker.ld similarity index 100% rename from src/linker.ld rename to arch/linker.ld diff --git a/src/logger.c b/arch/logger.c similarity index 100% rename from src/logger.c rename to arch/logger.c diff --git a/src/logger.h b/arch/logger.h similarity index 100% rename from src/logger.h rename to arch/logger.h diff --git a/src/main.c b/arch/main.c similarity index 100% rename from src/main.c rename to arch/main.c diff --git a/src/util.h b/arch/util.h similarity index 100% rename from src/util.h rename to arch/util.h