mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
Added 8x16 font, low-level VGA register programming and mode switching functions from LinuxBIOS. Fixed incorrect VGA_BASE. git-svn-id: svn://coreboot.org/openbios/openbios-devel@69 f158a5a8-5612-0410-a976-696ce0be7e32
12 lines
331 B
C
12 lines
331 B
C
#ifndef VIDEO_SUBR_H
|
|
#define VIDEO_SUBR_H
|
|
|
|
void video_tx_byte(unsigned char byte);
|
|
void vga_load_regs(void);
|
|
void vga_set_amode (void);
|
|
void vga_set_gmode (void);
|
|
void vga_font_load(unsigned char *vidmem, const unsigned char *font, int height, int num_chars);
|
|
extern const unsigned char fontdata_8x16[];
|
|
|
|
#endif /* VIDEO_SUBR_H */
|