-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a980275
commit 319935a
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Rust Bare-Bones Kernel | ||
===== | ||
|
||
This is designed to be a rust equivalent of the OSDev.org Bare\_Bones article, presenting the bare minimum you need to get started. | ||
|
||
Features | ||
--- | ||
* x86 and x86\_64 (amd64) "ports" | ||
* Initial paging for both (with higher-half) | ||
* Serial output using the classic PC serial port, passing through the rust `::core::fmt` interface | ||
* Links with libcore | ||
|
||
|
||
Requirements | ||
--- | ||
* A recent (1.0alpha) build of rustc | ||
* A suitable cross-compiling copy of binutils (i586-elf or x86\_64-elf) | ||
* A copy of the libcore source in .../libcore (synlink will do) | ||
|