Remove start.asm and start.s

This commit is contained in:
Sam Tebbs 2020-06-01 11:33:52 +01:00
parent 122adaba95
commit 368ecd30a0
2 changed files with 0 additions and 19 deletions

View file

@ -1,10 +0,0 @@
[bits 32]
[section .text]
[extern kernel_main]
start:
call kernel_main
halt:
cli
hlt
jmp halt

View file

@ -1,9 +0,0 @@
.global _start
.type _start, @function
_start:
call kmain
halt:
cli
hlt
jmp halt