From 96cee9ab2b1b5c9ae458ae7fc4600af1438aa069 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 15 Nov 2015 11:58:34 +0100 Subject: [PATCH] Link github repository --- posts/2015-11-15-allocating-frames.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/posts/2015-11-15-allocating-frames.md b/posts/2015-11-15-allocating-frames.md index 09743945..17e0256d 100644 --- a/posts/2015-11-15-allocating-frames.md +++ b/posts/2015-11-15-allocating-frames.md @@ -5,6 +5,10 @@ title: 'Allocating Frames' In this post we create an allocator that provides free physical frames for a future paging module. To get the required information about available and used memory we use the Multiboot information structure. Additionally, we improve the `panic` handler to print the corresponding message and source line. +The full source code is available on [Github][source repo]. Feel free to open issues there if you have any problems or improvements. You can also leave a comment at the bottom. + +[source repo]: https://github.com/phil-opp/blog_os/tree/allocating_frames + ## Preparation We still have a really tiny stack of 64 bytes, which won't suffice for this post. So we will increase it to 4096 (one page) in `boot.asm`: