about summary refs log tree commit diff stats
path: root/tools/iso/kernel.soso/boot.asm
blob: 773dd0f387a8ac526a8183115daae34941e7e756 (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
50
51
MBOOT_PAGE_ALIGN    equ 1<<0
MBOOT_MEM_INFO      equ 1<<1
MBOOT_USE_GFX       equ 1<<2
MBOOT_HEADER_MAGIC  equ 0x1BADB002
MBOOT_HEADER_FLAGS  equ MBOOT_PAGE_ALIGN | MBOOT_MEM_INFO | MBOOT_USE_GFX
MBOOT_CHECKSUM      equ -(MBOOT_HEADER_MAGIC + MBOOT_HEADER_FLAGS)


[BITS 32]


section .multiboot
align 4
    dd  MBOOT_HEADER_MAGIC
    dd  MBOOT_HEADER_FLAGS
    dd  MBOOT_CHECKSUM
    dd 0x00000000 ; header_addr
    dd 0x00000000 ; load_addr
    dd 0x00000000 ; load_end_addr
    dd 0x00000000 ; bss_end_addr
    dd 0x00000000 ; entry_addr
    ; Graphics requests
    dd 0x00000000 ; 0 = linear graphics
    dd 1024
    dd 768
    dd 32

section .bss
align 16
stack_bottom:
resb 16384 ; 16 KiB
stack_top:

[GLOBAL _start]  ; this is the entry point. we tell linker script to set start address of kernel elf file.
[EXTERN kmain]

section .text

_start:
    mov esp, stack_top

    ; push multiboot parameter to kmain()
    push ebx

    ; ...and run!
    cli
    call kmain

    ;never reach here
    cli
    hlt