coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
vga.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef _VGA_H
4 #define _VGA_H
5 
6 /*
7  * Basic palette.
8  */
9 struct palette {
10  unsigned char red;
11  unsigned char green;
12  unsigned char blue;
13 };
14 
15 extern const struct palette default_vga_palette[0x100];
16 
17 extern const unsigned char vga_font_8x16[256][16];
18 
19 #endif /* _VGA_H */
const unsigned char vga_font_8x16[256][16]
Definition: vga_font_8x16.c:12
const struct palette default_vga_palette[0x100]
Definition: vga_palette.c:9
Definition: vga.h:9
unsigned char red
Definition: vga.h:10
unsigned char green
Definition: vga.h:11
unsigned char blue
Definition: vga.h:12