Create an initial style for 3rd edition with dark mode support

This commit is contained in:
Philipp Oppermann
2020-12-16 20:17:33 +01:00
parent 798d5c58c5
commit 60a0b3bc28
13 changed files with 1413 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
+++
title = "Third Edition (Alpha)"
template = "edition-3/index.html"
+++

View File

@@ -0,0 +1,7 @@
+++
title = "Posts"
sort_by = "weight"
insert_anchor_links = "left"
render = false
page_template = "edition-3/raw.html"
+++

View File

@@ -0,0 +1,6 @@
+++
+++
## Bare Bones
In this first chapter, we explain how to create an operating system for the `x86_64` architecture step for step. Starting from scratch, we first create a minimal Rust executable that doesn't depend on the standard library. We then turn it into a bootable OS kernel by combining it with a bootloader. The resulting disk image can then be launched in the [QEMU](https://www.qemu.org/) emulator or booted on a real machine.