mirror of
https://github.com/tailix/kernel.git
synced 2025-07-31 22:00:58 -04:00
Add comments
This commit is contained in:
parent
0ca476069a
commit
29fd24c72e
1 changed files with 4 additions and 3 deletions
|
@ -23,9 +23,10 @@ stack_top:
|
||||||
.global _start
|
.global _start
|
||||||
.type _start, @function
|
.type _start, @function
|
||||||
_start:
|
_start:
|
||||||
mov $stack_top, %esp
|
mov $stack_top, %esp // Initialize stack
|
||||||
push %ebx
|
|
||||||
push %eax
|
push %ebx // Multiboot information pointer
|
||||||
|
push %eax // Multiboot magic number
|
||||||
call init
|
call init
|
||||||
cli
|
cli
|
||||||
1:
|
1:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue