diff --git a/blog/content/edition-3/posts/01-freestanding-binary/index.md b/blog/content/edition-3/posts/01-freestanding-binary/index.md index e0711a59..35dc4b30 100644 --- a/blog/content/edition-3/posts/01-freestanding-binary/index.md +++ b/blog/content/edition-3/posts/01-freestanding-binary/index.md @@ -6,10 +6,12 @@ date = 0000-01-01 [extra] chapter = "Bare Bones" -icon = ''' - - -''' +icon = ''' + + + + +''' +++ 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.