diff options
author | Alexis211 <alexis211@gmail.com> | 2010-02-05 21:35:38 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2010-02-05 21:35:38 +0100 |
commit | 3558f18daf50281ee1cd68cca96cd967dbac04ba (patch) | |
tree | cbe73621cdd2f481ed6f985aeb532ca1f7a7ad77 /src/stem/core/sys.c | |
parent | 893244c8b5272df86da5d333332eec26ae8f15f2 (diff) | |
download | TCE-3558f18daf50281ee1cd68cca96cd967dbac04ba.tar.gz TCE-3558f18daf50281ee1cd68cca96cd967dbac04ba.zip |
Everything seems to work : loading a module that displays a message.
Diffstat (limited to 'src/stem/core/sys.c')
-rw-r--r-- | src/stem/core/sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stem/core/sys.c b/src/stem/core/sys.c index 36ed6d0..d31c20e 100644 --- a/src/stem/core/sys.c +++ b/src/stem/core/sys.c @@ -22,7 +22,7 @@ uint16_t inw(uint16_t port) { } void panic(char* message, char* file, int line) { - monitor_write(">> PANIC: >>"); + monitor_write("\n>> PANIC: >>"); monitor_write(message); monitor_write("<< in file "); monitor_write(file); monitor_write("\nSystem halted T_T"); asm volatile("cli; hlt"); |