aboutsummaryrefslogtreecommitdiff
path: root/src/sys/timer.c
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2021-12-23 14:35:38 -0800
committerChristian Cunningham <cc@localhost>2021-12-23 14:35:38 -0800
commit599af82d6d264c84118cd9407dd03323f0a1cb38 (patch)
tree8da1ed2a4cfa51ff686844e4c4222203f7fb5319 /src/sys/timer.c
parent96f5bdd43e12c1c26e65e3a8e8d9ab0b95cd506e (diff)
Added Graphics Initialization Output
Diffstat (limited to 'src/sys/timer.c')
-rw-r--r--src/sys/timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys/timer.c b/src/sys/timer.c
index 8e333c4..b82ac2c 100644
--- a/src/sys/timer.c
+++ b/src/sys/timer.c
@@ -24,8 +24,8 @@ void c_timer() {
if (lock_mutex(&exe_cnt_m, SCHED_PID) == 0) {
*(exe_cnt_m.addr) += 1;
write_cstring(&g_Drawer, "DendritOS", 0xFF0000);
- write_cstring(&g_Drawer, " v", 0x00FF00);
- write_cstring(&g_Drawer, os_info_v, 0x00FF00);
+ write_cstring(&g_Drawer, " v", 0x00FFFF);
+ write_cstring(&g_Drawer, os_info_v, 0x00FFFF);
write_string(&g_Drawer, " #");
write_10(&g_Drawer, *(exe_cnt_m.addr));
release_mutex(&exe_cnt_m, SCHED_PID);