Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ReturnInfinity/Pure64
Pure64 is a kernel/software loader for x86-64 systems.
https://github.com/ReturnInfinity/Pure64
assembly loader nasm
Last synced: 3 months ago
JSON representation
Pure64 is a kernel/software loader for x86-64 systems.
- Host: GitHub
- URL: https://github.com/ReturnInfinity/Pure64
- Owner: ReturnInfinity
- License: mit
- Created: 2011-05-20T18:01:25.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T19:21:54.000Z (7 months ago)
- Last Synced: 2024-04-14T08:07:40.166Z (7 months ago)
- Topics: assembly, loader, nasm
- Language: Assembly
- Homepage: http://www.returninfinity.com
- Size: 866 KB
- Stars: 507
- Watchers: 50
- Forks: 93
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pure64 - a software loader for x86-64 systems
Pure64 is a software loader that was initially created for BareMetal OS.
The loader sets the computer into a full 64-bit state with no legacy compatibility layers and also enables all available CPU Cores in the computer.
Pure64 keeps an information table in memory that stores important details about the computer (Amount of RAM and memory layout, number of CPU cores and their APIC IDs, etc).
The Pure64 loader has been released separately so others can use it in their own software projects.## Prerequisites
The scripts in this repo depend on a Debian-based Linux system like [Ubuntu](https://www.ubuntu.com/download/desktop) or [Elementary](https://elementary.io). macOS is also supported if you are using [Homebrew](https://brew.sh).
- [NASM](https://nasm.us) - Assembly compiler to build the loader and boot sectors.
In Linux this can be completed with the following command:
sudo apt install nasm
## Building the source code
./build.sh
// EOF