Refractor: Moved each file to their respective folder.

This commit is contained in:
AfonsoCMSousa 2025-11-19 20:16:36 +00:00
parent 3bd026ca7a
commit 8f9ea8b71f
4 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ nasm -f bin ./boot/elevator.asm -o ./bin/elevator.bin
# Step 3: Assemble kernel entry point
echo -e "${BLUE}[3/6]${NC} Assembling kernel entry..."
nasm -f elf64 kernel.asm -o ./obj/kernel.asm.o
nasm -f elf64 ./boot/kernel.asm -o ./obj/kernel.asm.o
# Step 4: Compile kernel C code
echo -e "${BLUE}[4/6]${NC} Compiling kernel..."