diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -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 |
