mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
Compare commits
4 Commits
db2d2bca19
...
ffc6d54009
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ffc6d54009 | ||
|
|
dfd0e6c5d8 | ||
|
|
6fe8365b93 | ||
|
|
6d8075fe87 |
@@ -3,4 +3,7 @@ title = "Bare Bones"
|
||||
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
@@ -1156,3 +1156,18 @@ img {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.post-extra-content {
|
||||
margin-top: 1rem;
|
||||
|
||||
h4 {
|
||||
display: inline;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
a {
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user