vaseboot/include/VasEBoot/i386/pc/vesa_modes_table.h

20 lines
485 B
C

#ifndef VAS_EBOOT_VESA_MODE_TABLE_HEADER
#define VAS_EBOOT_VESA_MODE_TABLE_HEADER 1
#include <VasEBoot/types.h>
#define VAS_EBOOT_VESA_MODE_TABLE_START 0x300
#define VAS_EBOOT_VESA_MODE_TABLE_END 0x373
struct VasEBoot_vesa_mode_table_entry {
VasEBoot_uint16_t width;
VasEBoot_uint16_t height;
VasEBoot_uint8_t depth;
};
extern struct VasEBoot_vesa_mode_table_entry
VasEBoot_vesa_mode_table[VAS_EBOOT_VESA_MODE_TABLE_END
- VAS_EBOOT_VESA_MODE_TABLE_START + 1];
#endif