mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
97e0d75bcb
We load /_hello.o which just prints out a simple message. It executes inside the kernel itself, so no fancy userspace process or anything, but this is still so cool!
8 lines
131 B
C++
8 lines
131 B
C++
extern "C" int puts(const char*);
|
|
|
|
extern "C" int elf_entry()
|
|
{
|
|
puts("Home, where you are supposed to be...");
|
|
return 0;
|
|
}
|