]> Joshua Wise's Git repositories - netwatch.git/blobdiff - grubload/multiboot.S
Add a little bit more functionality to grubload
[netwatch.git] / grubload / multiboot.S
diff --git a/grubload/multiboot.S b/grubload/multiboot.S
deleted file mode 100644 (file)
index bddd8fd..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-.globl _start
-
-_start:
-       jmp multiboot_entry
-
-       .align 4
-multiboot_header:
-       .long 0x1badb002        /* Magic value */
-       .long 0x00000001        /* Flags -- "Please align modules for me" */
-       .long 0xE4524FFD        /* Checksum */
-
-multiboot_entry:
-       mov $_stack_top, %esp
-       pushl %ebx      /* Multiboot info structure */
-       pushl %eax      /* Magic number */
-       jmp c_start
-
-       .align 4
-_stack:
-       .space 16384
-_stack_top:
This page took 0.00769 seconds and 4 git commands to generate.