feat: rename 'ZenithOS' => 'MontaukOS' and fix build system issues

This commit is contained in:
2026-02-28 12:06:18 +01:00
parent 1809ae55e5
commit 83016847b4
136 changed files with 1669 additions and 51769 deletions
+4 -4
View File
@@ -1,18 +1,18 @@
/*
* main.cpp
* Hello world program for ZenithOS
* Hello world program for MontaukOS
* Copyright (c) 2025 Daniel Hammer
*/
#include <zenith/syscall.h>
#include <montauk/syscall.h>
extern "C" void _start() {
zenith::print("Hello from userspace!\n");
montauk::print("Hello from userspace!\n");
// while(true) {
// zenith::print("ab");
// montauk::print("ab");
// }
}