Follow these steps to build TheTaaJ from source:
- Clone the Repository:
git clone https://github.com/The-Jat/TheTaaJ.git- Prerequisites:
You need the following utilities:
- NASM (The Netwide Assembler)
- QEMU (Quick Emulator)
You can install NASM and QEMU using the package manager for your operating system. For example, on Ubuntu, you can use apt:
sudo apt-get install build-essential
sudo apt-get install git
sudo apt-get install nasm
sudo apt-get install qemu- Compile the Bootloader:
To compile the bootloader, navigate to the root of the repository and run:
make all- Test the Bootloader:
You can test the compiled bootloader using QEMU. Run the following command:
make run- Clean Up the Build:
make clean