refactor: remove old hello.elf userspace program

This commit is contained in:
2026-08-07 13:26:06 +02:00
parent cc1d80442e
commit 53d3e6c568
2 changed files with 1 additions and 19 deletions
-18
View File
@@ -1,18 +0,0 @@
/*
* main.cpp
* Hello world program for MontaukOS
* Copyright (c) 2025 Daniel Hammer
*/
#include <montauk/syscall.h>
extern "C" void _start() {
montauk::print("Hello from userspace!\n");
// while(true) {
// montauk::print("ab");
// }
}