mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2024-11-30 11:03:48 -06:00
25 lines
391 B
C
25 lines
391 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#ifndef FONT_H
|
||
|
#define FONT_H
|
||
|
/*
|
||
|
* Provides the font used for framebuffer display.
|
||
|
*
|
||
|
* Copyright (C) 2020 Martin Whitaker.
|
||
|
*/
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
/*
|
||
|
* Font size definitions.
|
||
|
*/
|
||
|
#define FONT_WIDTH 8
|
||
|
#define FONT_HEIGHT 16
|
||
|
#define FONT_CHARS 256
|
||
|
|
||
|
/*
|
||
|
* The font data.
|
||
|
*/
|
||
|
extern const uint8_t font_data[FONT_CHARS][FONT_HEIGHT];
|
||
|
|
||
|
#endif // FONT_H
|