aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/start.asm
blob: 8a7e015b6683652cf5f9b4f2b589423ee20cf7df (plain) (blame)
1
2
3
4
5
6
7
8
bits 32

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