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
+6
View File
@@ -326,6 +326,12 @@ namespace Zenith {
return (int64_t)Sys_TermSize();
case SYS_GETARGS:
return (int64_t)Sys_GetArgs((char*)frame->arg1, frame->arg2);
case SYS_RESET:
/* Unimplemented */
return -1;
case SYS_SHUTDOWN:
/* Unimplemented */
return -1;
default:
return -1;
}