mirror of
https://github.com/Cxbx-Reloaded/Cxbx-Reloaded.git
synced 2025-04-02 11:11:52 -04:00
26 lines
No EOL
534 B
C
26 lines
No EOL
534 B
C
// ******************************************************************
|
|
// *
|
|
// * proj : OpenXDK
|
|
// *
|
|
// * desc : Open Source XBox Development Kit
|
|
// *
|
|
// * file : xvga_tables.h
|
|
// *
|
|
// * note : XBox VGA
|
|
// *
|
|
// ******************************************************************
|
|
#ifndef XVGA_TABLES_H
|
|
#define XVGA_TABLES_H
|
|
|
|
#include "xvga_internal.h"
|
|
|
|
#define MODE256x240SIZE 25
|
|
extern vga_reg mode_256x240[];
|
|
|
|
#define MODE320x240SIZE 25
|
|
extern vga_reg mode_320x240[];
|
|
|
|
#define MODE320x200SIZE 25
|
|
extern vga_reg mode_320x200[];
|
|
|
|
#endif |