aboutsummaryrefslogtreecommitdiff
path: root/src/usr/main.c
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-03-24 09:38:08 -0700
committerChristian Cunningham <cc@localhost>2022-03-24 09:38:08 -0700
commit93bf62580a68533dc8252b9a2a055c02f34ecb67 (patch)
tree1b1ca92ebbe107a998136a1442c0dba5be885e13 /src/usr/main.c
parent3e64dda5d5c350cc325650133f7e64967f1efe84 (diff)
Modularized
Diffstat (limited to 'src/usr/main.c')
-rw-r--r--src/usr/main.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/usr/main.c b/src/usr/main.c
deleted file mode 100644
index 67b9c3a..0000000
--- a/src/usr/main.c
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <graphics/lfb.h>
-#include <symbols.h>
-
-char* ulong_to_string(unsigned long value, char* data)
-{
- unsigned long t = value;
- unsigned long c;
- char* dptr = data + 9;
- for (int i = 0; i <= 10; i++) {
- c = t%10;
- *dptr = 0x30 + (c&0xF);
- t /= 10;
- if (t==0)
- break;
- dptr -= 1;
- }
- return dptr;
-}
-
-void main(void)
-{
- static char str[13];
- char* start = ulong_to_string(*(volatile unsigned long*)SYS_TIMER_CHI, str);
- draw_string(0, 10, start);
-}