Rename modifying-page-tables.md to page-tables.md

This commit is contained in:
Philipp Oppermann
2016-08-03 14:42:52 +02:00
parent 9469dc5891
commit 68e2495d9c
4 changed files with 5 additions and 5 deletions

View File

@@ -424,7 +424,7 @@ Now we have a working frame allocator. It is a bit rudimentary and cannot free f
## What's next?
The [next post] will be about paging again. We will use the frame allocator to create a safe module that allows us to switch page tables and map pages. Then we will use this module and the information from the Elf-sections tag to remap the kernel correctly.
[next post]: {{% relref "2015-12-09-modifying-page-tables.md" %}}
[next post]: {{% relref "2015-12-09-page-tables.md" %}}
## Recommended Posts
Eric Kidd started the [Bare Metal Rust] series last week. Like this post, it builds upon the code from [Printing to Screen], but tries to support keyboard input instead of wrestling through memory management details.