A Freestanding Rust Binary

1 ยท Philipp Oppermann ยท Feb. 10, 2018, midnight
The first step in creating our own operating system kernel is to create a Rust executable that does not link the standard library. This makes it possible to run Rust code on the bare metal without an underlying operating system. This blog is openly developed on GitHub. If you have any problems or questions, please open an issue there. You can also leave comments at the bottom. The complete source code for this post can be found in the post-01 branch. ๐Ÿ”— Introduction To write an operating system...