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

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