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

8
sys/ld/hash.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef HASH_H_
#define HASH_H_
#include <stdint.h>
extern uint64_t hash_string(const char *s);
#endif