Kernel: Remove now-unused _start.cpp

This commit is contained in:
Andreas Kling 2019-04-03 12:40:09 +02:00
parent ab43658c55
commit 429bb091e7

View file

@ -1,15 +0,0 @@
/*
* _start()
*
* This is where we land immediately after leaving the bootloader.
*
* ATM it's really shaky so don't put code before it ^_^
*/
extern void init();
extern "C" void _start()
{
init();
asm volatile("cli; hlt");
}