- code cleanup

git-svn-id: http://svn.lfbs.rwth-aachen.de/svn/scc/trunk/MetalSVM@289 315a16e6-25f9-4109-90ae-ca3045a26c18
This commit is contained in:
stefan 2010-11-26 18:14:13 +00:00
parent aec80ba9e4
commit 0dd542dc47

View file

@ -27,7 +27,6 @@
SECTION .mboot
global start
start:
mov esp, _sys_stack ; This points the stack to our new stack area
jmp stublet
; This part MUST be 4byte aligned, so we solve that issue using 'ALIGN 4'
@ -58,7 +57,10 @@ mboot:
SECTION .text
ALIGN 4
stublet:
; interpret multiboot information
; Initialize the stack pointer.
mov esp, _sys_stack
; interpret multiboot information
extern multiboot_init
push ebx
call multiboot_init