summaryrefslogtreecommitdiff
path: root/user/lib/entry.S
blob: 40570b557aea329cdf16da8c640558b4071fea0e (plain)
1
2
3
4
5
6
7
8
9
10
11
	.globl _start
	.extern main
	.extern exit

	.section .text
	.code64
_start:
	call main
	subq	$16, %rsp # ???
	pushq	%rax
	call	exit