Go to the source code of this file.
Compounds | |
class | BIOS_Video |
struct | charInfo_t |
struct | cursorInfo_t |
struct | flash_cursor_t |
struct | graphPos_t |
struct | opticPen_t |
struct | textPos_t |
Typedefs | |
typedef textPos_t | cursor_t |
Enumerations | |
enum | VideoMode { Text40x25BW = 0x0000, Text40x25C = 0x0001, Text40 = 0x0001, Text80x25BW = 0x0002, Text80x25C = 0x0003, Text80 = 0x0003, Graph320x200x4C = 0x0004, Graph320x200x4BW = 0x0005, Graph640x200x4C = 0x0006, GraphMonoCard = 0x0007, Graph160x200x16 = 0x0008, Graph320x200x16 = 0x0009, Graph640x200x4 = 0x000A, Graph320x200x16 = 0x0009, Graph640x200x16 = 0x000E, Graph640x350BW = 0x000F, Graph640x350x16 = 0x0010, Graph640x480x2 = 0x0011, Graph640x480x16 = 0x0012, VGA16 = 0x0012, Graph320x200x256 = 0x0013, VGA256 = 0x0013 } |
|
|
|
Definition at line 1 of file VIDEO.CPP. 00001 { 00002 Text40x25BW = 0x0000, // Color card 00003 00004 Text40x25C = 0x0001, 00005 Text40 = 0x0001, // Old Big Text Mode 40x25 00006 00007 Text80x25BW = 0x0002, 00008 00009 Text80x25C = 0x0003, // Classic Text Mode 80x25 00010 Text80 = 0x0003, 00011 00012 Graph320x200x4C = 0x0004, 00013 Graph320x200x4BW = 0x0005, 00014 00015 Graph640x200x4C = 0x0006, 00016 00017 GraphMonoCard = 0x0007, 00018 00019 Graph160x200x16 = 0x0008, // PC Junior and higher 00020 Graph320x200x16 = 0x0009, 00021 Graph640x200x4 = 0x000A, 00022 00023 Graph320x200x16 = 0x000D, // EGA and higher 00024 Graph640x200x16 = 0x000E, 00025 Graph640x350BW = 0x000F, 00026 Graph640x350x16 = 0x0010, 00027 00028 Graph640x480x2 = 0x0011, // MCGA and higher 00029 00030 Graph640x480x16 = 0x0012, // Classic VGA 16 color 00031 VGA16 = 0x0012, 00032 00033 Graph320x200x256 = 0x0013, // Classic VGA 256 color (MCGA+) 00034 VGA256 = 0x0013 00035 }; |