1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-11-27 11:24:34 -05:00

Add comments

This commit is contained in:
Braiden Vasco 2017-11-04 02:25:57 +00:00
parent 0ca476069a
commit 29fd24c72e

View file

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