mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
1a4596601f
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
16 lines
359 B
C
16 lines
359 B
C
/*
|
|
* (C) Copyright 2000
|
|
* Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _VIDEO_FONT_
|
|
#define _VIDEO_FONT_
|
|
|
|
#define VIDEO_FONT_CHARS 256
|
|
#define VIDEO_FONT_WIDTH 8
|
|
#define VIDEO_FONT_HEIGHT 16
|
|
#define VIDEO_FONT_SIZE (VIDEO_FONT_CHARS * VIDEO_FONT_HEIGHT)
|
|
|
|
#endif /* _VIDEO_FONT_ */
|