diff options
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, " #"); |