From dd515d0b967076c439e3b1bb28c9f3d3bb5ca9a6 Mon Sep 17 00:00:00 2001 From: Dongliang Mu Date: Mon, 9 Jan 2023 19:25:02 +0800 Subject: [PATCH] Fix small typo calll -> call --- Booting/linux-bootstrap-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Booting/linux-bootstrap-1.md b/Booting/linux-bootstrap-1.md index 4e6b759..b334e07 100644 --- a/Booting/linux-bootstrap-1.md +++ b/Booting/linux-bootstrap-1.md @@ -553,7 +553,7 @@ Jump to main That's all! We have the stack and BSS, so we can jump to the `main()` C function: ```assembly - calll main + call main ``` The `main()` function is located in [arch/x86/boot/main.c](https://github.com/torvalds/linux/blob/v4.16/arch/x86/boot/main.c). You can read about what this does in the next part.