Compare commits

...

4 Commits

Author SHA1 Message Date
Philipp Oppermann
ffc6d54009 Improve formatting of extra content on main page 2022-12-18 20:14:19 +01:00
Philipp Oppermann
dfd0e6c5d8 Improve chapter description 2022-12-18 20:04:20 +01:00
Philipp Oppermann
6fe8365b93 Fix broken links caused by autoformatter 2022-12-18 20:02:19 +01:00
Philipp Oppermann
6d8075fe87 Rework minimal kernel post 2022-12-18 19:58:48 +01:00
7 changed files with 296 additions and 613 deletions

View File

@@ -3,4 +3,7 @@ title = "Bare Bones"
render = false render = false
+++ +++
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. In this first chapter, we explain how to create an operating system for the `x86_64` architecture step by 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.

File diff suppressed because it is too large Load Diff

View File

@@ -1156,3 +1156,18 @@ img {
opacity: 1; opacity: 1;
} }
} }
.post-extra-content {
margin-top: 1rem;
h4 {
display: inline;
margin-right: 1rem;
}
a {
font-weight: bold;
}
}