ld: implement an actual program loader

This commit is contained in:
2026-03-21 10:54:50 +00:00
parent ed138d581e
commit cc15bb54f3
14 changed files with 3123 additions and 60 deletions

7
sys/ld/resolve.h Normal file
View File

@@ -0,0 +1,7 @@
#ifndef RESOLVE_H_
#define RESOLVE_H_
extern void _dl_runtime_resolve(void);
extern virt_addr_t dl_runtime_resolve(unsigned int slot);
#endif