Add source code link to each post

This commit is contained in:
Philipp Oppermann
2019-01-27 17:58:30 +01:00
parent 04d3c134e2
commit 1034c884ac
9 changed files with 22 additions and 8 deletions

View File

@@ -12,6 +12,12 @@ The first step in creating our own operating system kernel is to create a Rust e
<!-- more -->
This blog is openly developed on [Github]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found [here][post branch].
[Github]: https://github.com/phil-opp/blog_os
[at the bottom]: #comments
[post branch]: https://github.com/phil-opp/blog_os/tree/post-01
## Introduction
To write an operating system kernel, we need code that does not depend on any operating system features. This means that we can't use threads, files, heap memory, the network, random numbers, standard output, or any other features requiring OS abstractions or specific hardware. Which makes sense, since we're trying to write our own OS and our own drivers.