blob: 2578e87316c6f5ad125ff28338cb938f3b596a28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.section .text
.global _start
.type _start, @function
_start:
mov $stack_top, %esp
call kmain_early
.global halt_cpu
.type halt_cpu, @function
halt_cpu:
cli
1: hlt
jmp 1b
.size _start, . - _start
|