repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
soc/intel/alderlake: Add ADL-P 4+4 with 28W TDP
[coreboot.git]
/
src
/
drivers
/
pc80
/
vga
/
vga.h
blob
dcc1c9a1a69a1597206d1362858ac44d9806201c
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 */