1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-22 06:38:07 +00:00

Fix small typo

calll -> call
This commit is contained in:
Dongliang Mu 2023-01-09 19:25:02 +08:00 committed by GitHub
parent 2cceabdd31
commit dd515d0b96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: That's all! We have the stack and BSS, so we can jump to the `main()` C function:
```assembly ```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. 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.