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