sys: add ld runtime linker

This commit is contained in:
2026-02-19 19:30:07 +00:00
parent 1e6748b4fc
commit efad96ce63
5 changed files with 83 additions and 0 deletions

13
sys/ld/main.c Normal file
View File

@@ -0,0 +1,13 @@
#include <mango/log.h>
#include <mango/types.h>
int main(
int argc,
const char **argv,
kern_handle_t task,
kern_handle_t address_space,
uintptr_t bsp_base)
{
kern_log("ld!");
return 0;
}