summaryrefslogtreecommitdiffstats
path: root/src/drivers/pc80/vga/vga.h
blob: dcc1c9a1a69a1597206d1362858ac44d9806201c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef _VGA_H
#define _VGA_H

/*
 * Basic palette.
 */
struct palette {
	unsigned char red;
	unsigned char green;
	unsigned char blue;
};

extern const struct palette default_vga_palette[0x100];

extern const unsigned char vga_font_8x16[256][16];

#endif /* _VGA_H */