mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
9396108034
It's a lot crappier than I remembered it. It's gonna need a lot of work.
16 lines
242 B
C++
16 lines
242 B
C++
/*
|
|
* _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");
|
|
}
|