summaryrefslogtreecommitdiff
path: root/userspace/crt0.S
blob: 9f7dab1dd9292901abc4580bff8a866a4ef5f5bf (plain)
1
2
3
4
5
6
7
8
9
.global _start
.extern main
.extern exit
_start:
call main
call _exit
.wait:
    hlt
jmp .wait