blob: 35cede563d1ae6af1e51f09d9706ebde0513761e (
plain) (
blame)
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
38
39
40
41
42
43
44
45
46
47
48
49
|
bits 32
kernel_stack equ 0x4000
multiboot_magic equ 0xe85250d6
section .text
align 4
multiboot:
header_start:
dd multiboot_magic
dd 0
dd header_end - header_start
dd 0x100000000 - (multiboot_magic + 0 + (header_end - header_start))
; Information tag
align 8
dw 1
dw 1
dd 24
dd 2 ; bootloader name
dd 4 ; meminfo
dd 6 ; mmap
dd 13 ; smbios
; Empty tag
align 8
dw 0
dw 0
dd 8
header_end:
global boot
;extern kernel_main
boot:
mov esp, stack_top
push esp
push ebx
push eax
cli
;call kernel_main
hlt
jmp $
section .bss
align 32
stack_bottom:
resb kernel_stack
stack_top:
|