Rename and restructure multiboot info post

This commit is contained in:
Philipp Oppermann
2015-11-11 23:30:16 +01:00
parent 4d59d7350c
commit 1f074264c0

View File

@@ -1,12 +1,11 @@
--- ---
layout: post layout: post
title: 'A Multiboot Module' title: 'The Multiboot Information Structure'
--- ---
TODO
## The Multiboot Information Structure
When a multiboot compliant bootloader loads a kernel, it passes a pointer to a boot information struct in the `ebx` register. We can use it to get information about available memory and loaded kernel sections. So let's write a module for it! When a multiboot compliant bootloader loads a kernel, it passes a pointer to a boot information struct in the `ebx` register. We can use it to get information about available memory and loaded kernel sections. So let's write a module for it!
## The Structure
TODO TODO
## Start and End of Kernel ## Start and End of Kernel