1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-02-12 23:52:36 +00:00

Fix 'calll' typo in booting

This commit is contained in:
Martin Brugnara 2015-11-11 10:41:33 +01:00
parent aefea69c9e
commit 552257f3f3
2 changed files with 2 additions and 1 deletions

View File

@ -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.

View File

@ -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)