From 5bed35b6dccc02d52d401fd12b8f7a100191ac59 Mon Sep 17 00:00:00 2001 From: Leandro Moreira Date: Tue, 20 Jan 2015 23:46:54 -0200 Subject: [PATCH] Fixes call opcode --- linux-bootstrap-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-bootstrap-1.md b/linux-bootstrap-1.md index 122af1d..4f6303f 100644 --- a/linux-bootstrap-1.md +++ b/linux-bootstrap-1.md @@ -456,7 +456,7 @@ Jump to main That's all, we have stack, bss and now we can jump to `main` C function: ```assembly - calll main + call main ``` which is in [arch/x86/boot/main.c](https://github.com/torvalds/linux/blob/master/arch/x86/boot/main.c). What will be there? We will see it in the next part.