summaryrefslogtreecommitdiff
path: root/code/fe310/eos/eve/screen/font.h
blob: 057201505b762113a63c6c0ba7fcc790857832ac (plain)
1
2
3
4
5
6
7
8
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);