fix: remove kernel mouse cursor demo, +add two future-implemented syscalls for shutdown & reset

This commit is contained in:
2026-02-18 16:52:44 +01:00
parent 116262a4b6
commit 3295b9970b
11 changed files with 33 additions and 143 deletions
+11
View File
@@ -176,4 +176,15 @@ namespace zenith {
if (rows) *rows = (int)(r >> 32);
}
// Power management
[[noreturn]] inline void reset() {
syscall0(Zenith::SYS_RESET);
__builtin_unreachable();
}
[[noreturn]] inline void shutdown() {
syscall0(Zenith::SYS_SHUTDOWN);
__builtin_unreachable();
}
}