aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Unix.mk2
-rw-r--r--Win.mk2
-rw-r--r--src/sys/core.c3
3 files changed, 2 insertions, 5 deletions
diff --git a/Unix.mk b/Unix.mk
index 3863264..ee1e2c7 100644
--- a/Unix.mk
+++ b/Unix.mk
@@ -24,7 +24,7 @@ ifeq ($(BSP),2)
CFLAGS += -DBSP23
endif
-CFLAGS += -DVERSION="\"0.0b\""
+CFLAGS += -DVERSION="\"0.0c\""
.PHONY: clean run run-debug debug export tree
diff --git a/Win.mk b/Win.mk
index cd268fe..edff8ac 100644
--- a/Win.mk
+++ b/Win.mk
@@ -24,7 +24,7 @@ ifeq ($(BSP),2)
CFLAGS += -DBSP23
endif
-CFLAGS += -DVERSION="\"0.0b\""
+CFLAGS += -DVERSION="\"0.0c\""
.PHONY: clean run run-debug debug export tree
diff --git a/src/sys/core.c b/src/sys/core.c
index 9d67645..1a6332f 100644
--- a/src/sys/core.c
+++ b/src/sys/core.c
@@ -6,8 +6,6 @@
#include "../sys/timer.h"
#include "../sys/power.h"
-//char* os_info_h = "\033[93mInitialized the Real Time Operating System\033[0m\n\033[96mName\033[0m: \033[94mDendritOS\033[0m\n\033[96mVersion\033[0m: \033[95m";
-//char* os_info_t = "\033[0m\n\nQEMU\n====\n Monitor : Ctrl-A c\n Timer : Ctrl-T\n Exit : Ctrl-A x\n\n";
#ifndef VERSION
char* os_info_v = "?";
#else
@@ -143,7 +141,6 @@ void output_irq_status(void) {
// Output the frequency
uart_string(" @ ");
unsigned long frq = read_cntfrq()/1000;
- //uart_hexn(cntfrq);
uart_10(frq);
uart_string((char*)" kHz");
} else {