xref: /openbmc/u-boot/include/video_font.h (revision 1a459660)
1 /*
2  * (C) Copyright 2000
3  * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 #ifndef _VIDEO_FONT_
9 #define _VIDEO_FONT_
10 
11 #define VIDEO_FONT_CHARS	256
12 #define VIDEO_FONT_WIDTH	8
13 #define VIDEO_FONT_HEIGHT	16
14 #define VIDEO_FONT_SIZE		(VIDEO_FONT_CHARS * VIDEO_FONT_HEIGHT)
15 
16 #endif /* _VIDEO_FONT_ */
17