diff options
author | Christian Cunningham <cc@localhost> | 2022-01-20 16:28:18 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-01-20 16:28:18 -0700 |
commit | 022dfd0f42962da6c60fbeb5604e1455a07eaaa6 (patch) | |
tree | 9798813d345b18a00337c26ec6384b42fe41e208 /src/util/status.c | |
parent | a9171b3f7499dfff1f40bf3503fdf13a20487b68 (diff) |
Added System Timer Hook
Diffstat (limited to 'src/util/status.c')
-rw-r--r-- | src/util/status.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/util/status.c b/src/util/status.c index dd2b899..7abf931 100644 --- a/src/util/status.c +++ b/src/util/status.c @@ -162,6 +162,15 @@ void status(void) "and %0, %0, #3" : "=r"(coren) :: "cc"); write_string(&g_Drawer, "Status Updated by Core #"); write_10(&g_Drawer, coren); + write_string(&g_Drawer, "\nSys Timer Status: "); + coren = *(unsigned long*)SYS_TIMER_CS; + write_10(&g_Drawer, coren); + write_string(&g_Drawer, " : "); + unsigned long long tval = get_time(); + write_hex32(&g_Drawer, (tval >> 32)); + write_hex32(&g_Drawer, tval); + write_char(&g_Drawer, '\n'); + write_10(&g_Drawer, ((unsigned long)tval)/1000000); g_Drawer.x = x; g_Drawer.y = y; |