|
1
|
/* |
|
2
|
* SPDX-License-Identifier: GPL-2.0-or-later |
|
3
|
*/ |
|
4
|
#ifndef VGAFONT_H |
|
5
|
#define VGAFONT_H |
|
6
|
|
|
7
|
#include <stdint.h> |
|
8
|
|
|
9
|
/* supports only vga 8x16 */ |
|
10
|
#define FONT_WIDTH 8 |
|
11
|
#define FONT_HEIGHT 16 |
|
12
|
|
|
13
|
extern const uint8_t vgafont16[256 * FONT_HEIGHT]; |
|
14
|
|
|
15
|
#endif |