blob: 11f8a4584ddf94060e7038f56ed529aab44f06cb (
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
|
section .multiboot
header_start:
dd 0xe85250d6
dd 0
dd header_end - header_start
dd 0x100000000 - (0xe85250d6 + 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:
section .start_section
dd _start
; Initialize stack
;section .bss
; align 16
;
; STACK_BOTTOM:
; resb 0x4000
; STACK_TOP:
section .text
global _start
extern kernel_main
_start:
;mov esp, STACK_TOP
push esp
push ebx
push eax
cli
call kernel_main
jmp $
|