• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 */
20