aboutsummaryrefslogtreecommitdiff
path: root/include/graphics
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-03-12 09:47:04 -0800
committerChristian Cunningham <cc@localhost>2022-03-12 09:47:04 -0800
commit468167fce9d64cb8f08832dd7586dd55f9200fb8 (patch)
tree2470776fdbf8ee4bb34fa36cb1e6010b5260cfc6 /include/graphics
parentf1a310b37e482d091a4c4ac6cbbf7a27f4033a7e (diff)
Draw Base-10 Numbers Easier
Diffstat (limited to 'include/graphics')
-rw-r--r--include/graphics/lfb.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/graphics/lfb.h b/include/graphics/lfb.h
index 17c85ac..e8a7766 100644
--- a/include/graphics/lfb.h
+++ b/include/graphics/lfb.h
@@ -26,4 +26,7 @@ void draw_string(unsigned int lx, unsigned int ly, char* s);
void draw_chex32(unsigned int lx, unsigned int ly, unsigned long val, unsigned int c);
void draw_hex32(unsigned int lx, unsigned int ly, unsigned long val);
+unsigned long draw_cu10(unsigned int lx, unsigned int ly, unsigned long val, unsigned int c);
+unsigned long draw_u10(unsigned int lx, unsigned int ly, unsigned long val);
+
#endif