mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
Fix a function name typo
This commit is contained in:
@@ -184,11 +184,11 @@ If you look at the assembly above, you'll probably notice that we call `cpuid` t
|
|||||||
We just call these check functions right after start:
|
We just call these check functions right after start:
|
||||||
|
|
||||||
```nasm
|
```nasm
|
||||||
global _start
|
global start
|
||||||
|
|
||||||
section .text
|
section .text
|
||||||
bits 32
|
bits 32
|
||||||
_start:
|
start:
|
||||||
mov esp, stack_top
|
mov esp, stack_top
|
||||||
|
|
||||||
call check_multiboot
|
call check_multiboot
|
||||||
|
|||||||
Reference in New Issue
Block a user