diff options
| author | Alexey Gavrilov <rebovas@yahoo.com> | 2023-11-04 10:09:44 +0700 |
|---|---|---|
| committer | Alexey Gavrilov <rebovas@yahoo.com> | 2023-11-04 10:09:44 +0700 |
| commit | c18781e37e6bfe153e7c0f2bc8b04df0aecf151d (patch) | |
| tree | 42bb0e00e58ccf85aa3b93c20347d4939464066e /README.md | |
| parent | a93807ad337dd982c49f898cd5205d2b028f365d (diff) | |
Support for GDT has been written + add makefile debug mode
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 |
