summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
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