blob: 9ba65da85d2cab45e783f0c4a622ea8d48271143 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* SoftPC Revision 2.0
*
* Title : Win32 EGA Graphics Includes
*
* Description :
*
* This is the include file for the Win32 specific functions required
* to support the EGA emulation.
*
* Author : Dave Bartlett
*
* Notes :
*
*/
#define EGA_TICK_DELAY 2 /* ticks before EGA mode changes occur */
#define EGA_CHAR_WIDTH 8
#define EGA_CHAR_HEIGHT 14
#define EGA_WIN_WIDTH (80 * EGA_CHAR_WIDTH)
#define EGA_WIN_HEIGHT (25 * EGA_CHAR_HEIGHT)
|