From 552257f3f3173dd71592f5fe3f23b28f1e46171f Mon Sep 17 00:00:00 2001 From: Martin Brugnara Date: Wed, 11 Nov 2015 10:41:33 +0100 Subject: [PATCH] Fix 'calll' typo in booting --- Booting/linux-bootstrap-1.md | 2 +- contributors.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Booting/linux-bootstrap-1.md b/Booting/linux-bootstrap-1.md index e0b3a34..b99aedc 100644 --- a/Booting/linux-bootstrap-1.md +++ b/Booting/linux-bootstrap-1.md @@ -468,7 +468,7 @@ Jump to main That's all, we have the stack, 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/master/arch/x86/boot/main.c). What this does, you can read in the next part. diff --git a/contributors.md b/contributors.md index 71f3404..d1aa4d7 100644 --- a/contributors.md +++ b/contributors.md @@ -78,3 +78,4 @@ Thank you to all contributors: * [Ruth Grace Wong](https://github.com/ruthgrace) * [Jeremy Lacomis](https://github.com/jlacomis) * [Dubyah](https://github.com/Dubyah) +* [Martin Brugnara] (https://github.com/MartinBrugnara)