got the screen cleared, vga cursor moving, looking good

This commit is contained in:
2026-07-12 11:42:49 -05:00
parent d60036a4bd
commit e2ab130324
4 changed files with 21 additions and 2 deletions

View File

@@ -26,7 +26,6 @@ typedef struct registers {
static int32_t sys_exit(int status) {
process_t* task = current_task();
task->state = STATE_DEAD;
kprintf("exiting task %d with status %d\n", task->pid, status);
exit();
return 0;
}