Merge pull request #151 from SamTebbs33/remove-unused-files

Remove start.asm and start.s
This commit is contained in:
Sam Tebbs 2020-06-02 17:31:26 +01:00 committed by GitHub
commit 10a629c6ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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