New feature(s):
- Network stack
- Piping commands into a udpsend message
Bug fix(es):
-N/A
This commit is contained in:
Chris
2026-02-05 21:59:21 +01:00
parent d9fc8fbeda
commit 89bdb860dd
34 changed files with 1322 additions and 16 deletions

10
src/kernel/platform.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef PLATFORM_H
#define PLATFORM_H
#include <stdint.h>
void platform_init(void);
uint64_t p2v(uint64_t phys);
uint64_t v2p(uint64_t virt);
#endif