mirror of
https://github.com/tailix/kernel.git
synced 2024-11-27 11:24:34 -05: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
|
||||
.type _start, @function
|
||||
_start:
|
||||
mov $stack_top, %esp
|
||||
push %ebx
|
||||
push %eax
|
||||
mov $stack_top, %esp // Initialize stack
|
||||
|
||||
push %ebx // Multiboot information pointer
|
||||
push %eax // Multiboot magic number
|
||||
call init
|
||||
cli
|
||||
1:
|
||||
|
|
Loading…
Reference in a new issue