aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/start.asm
blob: 488101c3d823471a1d16599ae9640c25be5a7df1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
bits 32
section .start_section
    dd _start

section .text
    global _start
    extern user_main
    _start:
        mov esp, ebp
        call user_main
        jmp $