diff options
author | Christian Cunningham <cc@localhost> | 2022-01-21 11:37:15 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-01-21 11:37:15 -0700 |
commit | 0ff3f3c6f0773c7023b86bc829ff607e934bc2dc (patch) | |
tree | dd099e8d8b8c0db18362eeaba40e43d7e964713c /src | |
parent | 9a9331a96509771d7d80e65039021613ba7b3601 (diff) |
Renamed
Diffstat (limited to 'src')
-rw-r--r-- | src/globals.c | 3 | ||||
-rw-r--r-- | src/util/status.c | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/globals.c b/src/globals.c index d14103d..99aa48f 100644 --- a/src/globals.c +++ b/src/globals.c @@ -3,6 +3,7 @@ #include <util/mutex.h> #include <graphics/drawer.h> #include <sys/schedule.h> +char* os_name = "Jobbed"; #ifndef VERSION char* os_info_v = "?"; #else @@ -18,8 +19,6 @@ __attribute__((section(".bss"))) unsigned long stimel; __attribute__((section(".bss"))) unsigned long stimeh; __attribute__((section(".bss"))) struct Drawer g_Drawer; __attribute__((section(".bss"))) struct Scheduler scheduler; -__attribute__((section(".bss"))) unsigned long svcsp; -__attribute__((section(".bss"))) struct cpu_context svccpu; __attribute__((section(".bss"))) unsigned int gwidth; __attribute__((section(".bss"))) unsigned int gheight; __attribute__((section(".bss"))) unsigned int gpitch; diff --git a/src/util/status.c b/src/util/status.c index d07bf0a..460e3b0 100644 --- a/src/util/status.c +++ b/src/util/status.c @@ -60,7 +60,7 @@ void status(void) g_Drawer.x = 0; g_Drawer.y = 0; // OS Info - write_cstring(&g_Drawer, "DendritOS", 0xFF0000); + write_cstring(&g_Drawer, os_name, 0xFF0000); write_cstring(&g_Drawer, " v", 0x00FFFF); write_cstring(&g_Drawer, os_info_v, 0x00FFFF); write_string(&g_Drawer, " #"); |