summaryrefslogtreecommitdiff
path: root/userland/libc/crt0.s
blob: 05144d49e0660a2ac3106a21a1dd5e668e0d7c55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.global _start
.extern main
_start:
	call main
	mov %eax, %ebx
	mov $8, %eax
	int $0x80
l:
	nop
	nop
	nop
	nop
	jmp l