mirror of
https://github.com/Echelon9/cxbx-shogun.git
synced 2025-04-02 10:41:47 -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 |