1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-21 13:11:51 +00:00

Fixes call opcode

This commit is contained in:
Leandro Moreira 2015-01-20 23:46:54 -02:00
parent 465f57d976
commit 5bed35b6dc

View File

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