aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/boot.asm
blob: 2180069b31d146975f89d4d92da32015aec57d7a (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
section .start_section
    dd _start

; Initialize stack
section .bss
    align 16
    global STACK_BOTTOM
    global STACK_TOP

    STACK_BOTTOM:
        resb 0x4000
    STACK_TOP:

section .text
    global _start
    extern kernel_main
    _start:
        mov esp, STACK_TOP
        push ebx
        push eax
        cli
        call kernel_main
        cli

    hlt_L:
        hlt
        jmp hlt_L

    %include "src/kernel/gdt/gdt.asm"

    %include "src/kernel/interrupts/idt.asm"

    %include "src/kernel/interrupts/isr.asm"

    %include "src/kernel/interrupts/irq.asm"

    %include "src/kernel/interact.asm"

    global jump_userspace
    jump_userspace:
        push ebp
        mov ebp, esp
        mov edx, DWORD[ebp + 0xC]
        mov esp, edx

        mov ax, 0x23
        mov ds, ax
        mov es, ax
        mov fs, ax
        mov gs, ax

        mov eax, esp
        push 0x23
        push eax
        pushf
        pop eax

        or eax, 0x200
        push eax
        push 0x1B

        push DWORD[ebp + 0x8]

        iret
        pop ebp
        ret

section .end_section
    global ASM_KERNEL_END
    ASM_KERNEL_END:
        ; Kernel size detection