mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00: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!
7 lines
131 B
C++
7 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;
|
|
}
|