summaryrefslogtreecommitdiff
path: root/boot/kernel_entry.asm
blob: 77bb2a5b8b9189c9d25ae54dbfa6d607030852c9 (plain)
1
2
3
4
5
6
7
8
9
10
[bits 32]

[extern kernel_main]
[extern int0]

call kernel_main ; jumps in the world of C
call int0 ; jumps in the world of C
ret

jmp $