1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2025-07-31 22:00:58 -04: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 .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: