feat: scheduling, usermode, shell

This commit is contained in:
2026-02-17 19:17:01 +01:00
parent 20fa8a9be2
commit 605fbcbe42
46 changed files with 2622 additions and 98 deletions
+18
View File
@@ -0,0 +1,18 @@
/*
* main.cpp
* Hello world program for ZenithOS
* Copyright (c) 2025 Daniel Hammer
*/
#include <zenith/syscall.h>
extern "C" void _start() {
zenith::print("Hello from userspace!\n");
// while(true) {
// zenith::print("ab");
// }
}