aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/util/status.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/status.c b/src/util/status.c
index be19287..ac801d1 100644
--- a/src/util/status.c
+++ b/src/util/status.c
@@ -139,6 +139,9 @@ void status(void)
write_char(&g_Drawer, ' ');
sp = (unsigned long)getfiqstack();
write_hex32(&g_Drawer, sp);
+ write_char(&g_Drawer, ' ');
+ sp = (unsigned long)getsysstack();
+ write_hex32(&g_Drawer, sp);
write_char(&g_Drawer, '\n');
for(unsigned long i = 1; i <= 14; i++) {
write_hex32(&g_Drawer, *(unsigned long*)(0x4000 - i*4));