From 3b2503a187f375dfe63ec2fb376c7ac399e64156 Mon Sep 17 00:00:00 2001 From: lordtet Date: Wed, 11 Jun 2025 00:39:51 -0400 Subject: [PATCH] Updated the readme for better usage. --- .gitignore | 3 +++ README.md | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 01b5dda..f40eabd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,8 @@ build/ bootloader/ +.ccls-cache/ +compile_commands.json + # ---> C # Prerequisites *.d diff --git a/README.md b/README.md index 285430a..16c082f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,9 @@ Just a piece of OS type things I plan on toying with. ### Building -`Make all`, will place in `build/`. +`make all`, will place in `build/`. -In order for `Make run` to work, you'll need qemu for x86. This will likely change to build a complete image that pulls in a bootloader. +In order for `make run` to work, you'll need qemu for x86. You will also need a i686 cross compiler. + +If you want a full image, `make iso` will do that.