port os functions, add testing module

This commit is contained in:
Krzosa Karol
2025-02-02 17:34:06 +01:00
parent 85a6c218b2
commit 9f33ea0914
27 changed files with 1120 additions and 889 deletions

View File

@@ -0,0 +1,12 @@
#include "core/core.h"
#include "os/os.h"
#include "core/core.c"
#include "os/os.c"
#include "testing.gen.c"
int main() {
core_init();
run_tests();
return 0;
}