Rename code release tags for first edition

This commit is contained in:
Philipp Oppermann
2019-01-26 12:39:59 +01:00
parent 9cd801fd1f
commit bc2b3891d6
11 changed files with 20 additions and 20 deletions

View File

@@ -12,7 +12,7 @@ In this post we will create a paging module, which allows us to access and modif
You can find the source code and this post itself on [Github][source repository]. Please file an issue there if you have any problems or improvement suggestions. There is also a comment section at the end of this page. Note that this post requires a current Rust nightly.
[source repository]: https://github.com/phil-opp/blog_os/tree/post_6
[source repository]: https://github.com/phil-opp/blog_os/tree/first_edition_post_6
## Paging
_Paging_ is a memory management scheme that separates virtual and physical memory. The address space is split into equal sized _pages_ and _page tables_ specify which virtual page points to which physical frame. For an extensive paging introduction take a look at the paging chapter ([PDF][paging chapter]) of the [Three Easy Pieces] OS book.