diff options
author | Christian Cunningham <cc@localhost> | 2021-12-23 07:32:54 -0800 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2021-12-23 07:32:54 -0800 |
commit | 9130122609599f14f30fd6d2b32d15865cc8dfe3 (patch) | |
tree | 6d099a03f9be4028b234c1d06cafd92446d629ea /src/graphics/drawer.h | |
parent | 5427e73f6437edd0c889a107ebb6adb4436d55da (diff) |
Moving away from UART output
Diffstat (limited to 'src/graphics/drawer.h')
-rw-r--r-- | src/graphics/drawer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/graphics/drawer.h b/src/graphics/drawer.h index 63b5194..04f8f23 100644 --- a/src/graphics/drawer.h +++ b/src/graphics/drawer.h @@ -8,10 +8,14 @@ struct Drawer { static struct Drawer g_Drawer; +void write_cchar(struct Drawer* d, char s, unsigned int c); +void write_char(struct Drawer* d, char s); void write_cstring(struct Drawer* d, char* s, unsigned int c); void write_string(struct Drawer* d, char* s); void write_chex32(struct Drawer* d, unsigned long val, unsigned int c); void write_hex32(struct Drawer* d, unsigned long val); +void write_c10(struct Drawer* d, unsigned long val, unsigned int c); +void write_10(struct Drawer* d, unsigned long val); void set_drawer(struct Drawer* d, unsigned int x, unsigned int y); #endif |