diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2022-10-07 16:42:35 +0200 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2022-10-07 16:42:35 +0200 |
commit | 1155e97dab101fd1215e12ff8737048b0f6bedaf (patch) | |
tree | 91ac7806d9c39593a5c6972e9fe02fa6fbb882b0 /stage3/halt.c | |
parent | f8397815545adb7d0da36614e0065aa68453a2e4 (diff) | |
download | cuddles-1155e97dab101fd1215e12ff8737048b0f6bedaf.tar.xz |
Font rendering
Diffstat (limited to 'stage3/halt.c')
-rw-r--r-- | stage3/halt.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/stage3/halt.c b/stage3/halt.c index 63ad8e2..39bc3c9 100644 --- a/stage3/halt.c +++ b/stage3/halt.c @@ -1,7 +1,14 @@ #include "halt.h" +#include "font.h" void halt() { for (;;) ; } + +void panic(char *msg) +{ + print(msg); + halt(); +} |