From a06f074bc80e9b4270ad093a6430396d14adf05d Mon Sep 17 00:00:00 2001 From: skierpage Date: Sun, 25 Jun 2017 04:38:15 -0700 Subject: [PATCH] Minor error in 01-multiboot-kernel.md (#336) Fixes #335 --- blog/content/posts/01-multiboot-kernel/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/posts/01-multiboot-kernel/index.md b/blog/content/posts/01-multiboot-kernel/index.md index bed4576f..e99759e6 100644 --- a/blog/content/posts/01-multiboot-kernel/index.md +++ b/blog/content/posts/01-multiboot-kernel/index.md @@ -234,7 +234,7 @@ Notice the green `OK` in the upper left corner. If it does not work for you, tak Let's summarize what happens: -1. the BIOS loads the bootloader (GRUB) from the virtual hard drive (the ISO) +1. the BIOS loads the bootloader (GRUB) from the virtual CD-ROM (the ISO) 2. the bootloader reads the kernel executable and finds the Multiboot header 3. it copies the `.boot` and `.text` sections to memory (to addresses `0x100000` and `0x100020`) 4. it jumps to the entry point (`0x100020`, you can obtain it through `objdump -f`)