aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/main.asm
blob: 4369f103a00fd345122b491bced77fc25ab375b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
bits 32
mov esp, ebp

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

jmp $

welcome db "Welcome to the userspace!", 0x0A, 0x0A
welcome_sz equ $ - welcome