summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAlexey Gavrilov <rebovas@yahoo.com>2023-11-04 10:09:44 +0700
committerAlexey Gavrilov <rebovas@yahoo.com>2023-11-04 10:09:44 +0700
commitc18781e37e6bfe153e7c0f2bc8b04df0aecf151d (patch)
tree42bb0e00e58ccf85aa3b93c20347d4939464066e /README.md
parenta93807ad337dd982c49f898cd5205d2b028f365d (diff)
Support for GDT has been written + add makefile debug mode
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 10 insertions, 4 deletions
diff --git a/README.md b/README.md
index b7d31cf..9736ee0 100644
--- a/README.md
+++ b/README.md
@@ -11,15 +11,21 @@ sudo apt update -y
sudo apt -y install build-essential binutils nasm xorriso grub-common qemu-system-i386 mtools
```
+Need build GCC cross compiler for i686 architecture to compile project sources.
+Refer to GCC documentation for detailed information - <https://gcc.gnu.org/install/>
+
## Build and run
#### Ubuntu
+Build and run release version
+```sh
+make all
+```
+
+Build and run debug version
```sh
-# Build and create iso image
-make install
-# Run emulator
-make run
+make DEBUG=true all
```
## Docs