mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-01-16 06:29:09 +01:00
17 lines
222 B
C
17 lines
222 B
C
|
#ifndef FONT_H__
|
||
|
#define FONT_H__
|
||
|
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
#define FONT_WIDTH (8)
|
||
|
#define FONT_HEIGHT (8)
|
||
|
#define FONT_CHAR_BYTES (8)
|
||
|
|
||
|
|
||
|
extern const uint8_t font_data[96][FONT_CHAR_BYTES];
|
||
|
|
||
|
|
||
|
#endif
|