summaryrefslogtreecommitdiff
path: root/code/fe310/eos/eve/screen/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'code/fe310/eos/eve/screen/font.h')
-rw-r--r--code/fe310/eos/eve/screen/font.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/code/fe310/eos/eve/screen/font.h b/code/fe310/eos/eve/screen/font.h
new file mode 100644
index 0000000..409b109
--- /dev/null
+++ b/code/fe310/eos/eve/screen/font.h
@@ -0,0 +1,9 @@
+#include <stdint.h>
+
+typedef struct EVEFont {
+ uint8_t id;
+ uint8_t w[128];
+ uint8_t h;
+} EVEFont;
+
+void eve_font_init(EVEFont *font, uint8_t font_id); \ No newline at end of file