Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/IanSeyler/rustboot64
A tiny 64 bit kernel written in Rust
https://github.com/IanSeyler/rustboot64
Last synced: 2 months ago
JSON representation
A tiny 64 bit kernel written in Rust
- Host: GitHub
- URL: https://github.com/IanSeyler/rustboot64
- Owner: IanSeyler
- License: bsd-2-clause
- Archived: true
- Created: 2014-11-17T18:55:38.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-14T13:54:48.000Z (over 9 years ago)
- Last Synced: 2024-08-01T22:42:04.331Z (6 months ago)
- Language: Assembly
- Size: 203 KB
- Stars: 49
- Watchers: 8
- Forks: 18
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rustboot64
A tiny 64-bit "kernel" written in Rust.
I was inspired to download Rust and try to do this after seeing [rustboot](https://github.com/charliesome/rustboot) which was limited to 32-bit operation on a single CPU.
rustboot64 makes use of [Pure64](https://github.com/returninfinity/pure64) to get the system into 64-bit mode, gather required details for operations, as well as enabling all available CPU cores.
At the moment, it paints the screen bright blue and then hangs. That's it:
![](http://i.imgur.com/FGGnUJ2.png)
## Setup
You need a few things to run rustboot64:
1. `qemu`
2. `ld`
3. `nasm`
4. Rust's `master` branch or 0.13 release.### Linux
git clone https://github.com/IanSeyler/rustboot64.git
## Running it
To compile, simply
```bash
$ make
```To run,
```bash
$ make run
```