From cf835e19ae45289b1622bfedd34eb1c269e38cbb Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 15 Nov 2015 02:01:36 +0100 Subject: [PATCH] Recommend Eric Kidd's Bare Metal Rust series --- posts/DRAFT-allocating-frames.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/posts/DRAFT-allocating-frames.md b/posts/DRAFT-allocating-frames.md index c859b503..824afae7 100644 --- a/posts/DRAFT-allocating-frames.md +++ b/posts/DRAFT-allocating-frames.md @@ -358,3 +358,9 @@ for section in multiboot.elf_tag().sections() { } ``` TODO + +## Recommended Posts +Eric Kidd started the [Bare Metal Rust] series last week. Like this post, it builds upon the code from [Printing to Screen], but tries to support keyboard input instead of wrestling through memory management details ;). + +[Bare Metal Rust]: http://www.randomhacks.net/bare-metal-rust/ +[Printing to Screen]: {% post_url 2015-10-23-printing-to-screen %}