summaryrefslogtreecommitdiffstats
path: root/kernel/boot.s
blob: 281e1cae2bbd29b1a43b8343b1420378c2c03ce1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
section .text
extern main
extern _estack
global _start:function (_start.end - _start)
_start:
            mov esp, _estack
            call main
            cli
.hang:      hlt
            jmp .hang
.end: