soc/intel/alderlake: Add ADL-P 4+4 with 28W TDP
[coreboot.git] / src / drivers / pc80 / vga / vga.h
blobdcc1c9a1a69a1597206d1362858ac44d9806201c
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef _VGA_H
4 #define _VGA_H
6 /*
7 * Basic palette.
8 */
9 struct palette {
10 unsigned char red;
11 unsigned char green;
12 unsigned char blue;
15 extern const struct palette default_vga_palette[0x100];
17 extern const unsigned char vga_font_8x16[256][16];
19 #endif /* _VGA_H */