summaryrefslogtreecommitdiff
path: root/src/kernel/core/sys.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/core/sys.c')
-rw-r--r--src/kernel/core/sys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/core/sys.c b/src/kernel/core/sys.c
index 1045cff..1e07f7c 100644
--- a/src/kernel/core/sys.c
+++ b/src/kernel/core/sys.c
@@ -25,7 +25,7 @@ void panic(char* message, char* file, int line) {
monitor_write("\n>> PANIC: >>");
monitor_write(message); monitor_write("<< at "); monitor_write(file);
monitor_write(":"); monitor_writeDec(line);
- monitor_write("\nSystem halted T_T");
+ monitor_write("\nSystem halted -_-'");
asm volatile("cli; hlt");
}