diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2022-10-07 18:05:02 +0200 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2022-10-07 18:05:02 +0200 |
commit | 8b9f33dd745ebba0e819927ab3906635bfb3bf34 (patch) | |
tree | b76b534f7846ae3d47638d42b0a15d37e4896ac9 /stage3/halt.c | |
parent | 1155e97dab101fd1215e12ff8737048b0f6bedaf (diff) | |
download | cuddles-8b9f33dd745ebba0e819927ab3906635bfb3bf34.tar.xz |
Implement fully ascii printing
Diffstat (limited to 'stage3/halt.c')
-rw-r--r-- | stage3/halt.c | 2 |
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(); } |