aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/start.asm
blob: 498f5f56bcd47e8b7629cdb256e45bbbc5aa1e0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
bits 32
section .start_section
    dd _start

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

    global syscall
    syscall:
        mov eax, 1
        lea edi, [ebp+welcome]
        mov esi, welcome_sz
        int 0x80
        ret

section .data
        welcome db "Welcome to the userspace", 0x0A, 0x0A
        welcome_sz equ $ - welcome