summaryrefslogtreecommitdiff
path: root/stage3/halt.c
diff options
context:
space:
mode:
authorLizzy Fleckenstein <eliasfleckenstein@web.de>2022-10-07 18:05:02 +0200
committerLizzy Fleckenstein <eliasfleckenstein@web.de>2022-10-07 18:05:02 +0200
commit8b9f33dd745ebba0e819927ab3906635bfb3bf34 (patch)
treeb76b534f7846ae3d47638d42b0a15d37e4896ac9 /stage3/halt.c
parent1155e97dab101fd1215e12ff8737048b0f6bedaf (diff)
downloadcuddles-8b9f33dd745ebba0e819927ab3906635bfb3bf34.tar.xz
Implement fully ascii printing
Diffstat (limited to 'stage3/halt.c')
-rw-r--r--stage3/halt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage3/halt.c b/stage3/halt.c
index 39bc3c9..d4d0f64 100644
--- a/stage3/halt.c
+++ b/stage3/halt.c
@@ -9,6 +9,6 @@ void halt()
void panic(char *msg)
{
- print(msg);
+ println(msg);
halt();
}