https://github.com/supercomputer7/nahmanboot
A project that aims to create a modern x86(_64) bootloader, inspired by the great work of the SerenityOS project.
https://github.com/supercomputer7/nahmanboot
Last synced: 9 days ago
JSON representation
A project that aims to create a modern x86(_64) bootloader, inspired by the great work of the SerenityOS project.
- Host: GitHub
- URL: https://github.com/supercomputer7/nahmanboot
- Owner: supercomputer7
- License: bsd-2-clause
- Created: 2021-07-10T01:05:41.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-08-02T17:45:19.000Z (almost 4 years ago)
- Last Synced: 2025-11-07T05:03:50.570Z (8 months ago)
- Language: C++
- Homepage:
- Size: 243 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
NahmanBoot
# How to build and test
## Toolchain build
From local repository directory:
```sh
cd Toolchain
./build.sh
```
## Actual compiling
From local repository directory:
```sh
mkdir Build
cd Build
cmake .. -G Ninja
ninja
```
## Testing!
From local repository directory:
```sh
ninja run
```