From bb54dbcce60cc6402f58b88fae34742a9e5ac289 Mon Sep 17 00:00:00 2001 From: Kevin Soules Date: Sun, 4 Jan 2015 21:41:24 +0100 Subject: [PATCH] Typo Fix one small typo. --- 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 3f77890..1f6dabb 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.