forked from copy/v86
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.inc
37 lines (31 loc) · 864 Bytes
/
header.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
MBALIGN equ 1<<0 ; align loaded modules on page boundaries
MEMINFO equ 1<<1 ; provide memory map
FLAGS equ 0 ; this is the Multiboot 'flag' field
MAGIC equ 0x1BADB002 ; 'magic number' lets bootloader find the header
CHECKSUM equ -(MAGIC + FLAGS) ; checksum of above, to prove we are multiboot
section .multiboot
align 4
dd MAGIC
dd FLAGS
dd CHECKSUM
section .bss
resb 2*4096 ; 0x2000
stack_top:
section .text
_start:
main:
xor eax, eax
xor ecx, ecx
xor edx, edx
xor ebx, ebx
; xor esp, esp
mov esp, stack_top
xor ebp, ebp
xor esi, esi
xor edi, edi
; make space for memory operations
%rep 8
push 0
%endrep
push 0
popf