From 29fd24c72e6a1f71dbd18793d6e4cea4eb936093 Mon Sep 17 00:00:00 2001 From: Braiden Vasco Date: Sat, 4 Nov 2017 02:25:57 +0000 Subject: [PATCH] Add comments --- arch/start.s | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/arch/start.s b/arch/start.s index 7eb5d36..178fd01 100644 --- a/arch/start.s +++ b/arch/start.s @@ -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: