From c1254944ab4b4859e3145ee5b1c7f5887e96bad8 Mon Sep 17 00:00:00 2001 From: shockrahwow Date: Thu, 12 Sep 2019 11:51:47 -0700 Subject: [PATCH] more core things for building --- io.asm => core/io.asm | 0 io.h => core/io.h | 0 makefile | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename io.asm => core/io.asm (100%) rename io.h => core/io.h (100%) diff --git a/io.asm b/core/io.asm similarity index 100% rename from io.asm rename to core/io.asm diff --git a/io.h b/core/io.h similarity index 100% rename from io.h rename to core/io.h diff --git a/makefile b/makefile index 128fea4..264e21d 100644 --- a/makefile +++ b/makefile @@ -41,4 +41,4 @@ run: os.iso bochs -f bochsrc.conf -q clean: - rm -rf *.o kernel.elf os.iso bochslog.txt + rm -rf core/*.o kernel.elf os.iso bochslog.txt