summaryrefslogtreecommitdiff
path: root/kernel/usrbin/usrbin.s
blob: 248d823b36998d39127c196ccfc664ba105244f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
bits 32
org 0x100000

main:
  push .msg
  push byte 0
  int 0x80
  add esp, 4
.loop:
  ; loop forever
  jmp .loop
.msg: db "Hello World from Userspace, using syscalls!", 10, 0