-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSVGA256.H
More file actions
24 lines (20 loc) · 812 Bytes
/
SVGA256.H
File metadata and controls
24 lines (20 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/************************************************/
/* */
/* SuperVGA 256 BGI driver defines */
/* Copyright (c) 1991 */
/* Jordan Hargraphix Software */
/* */
/************************************************/
#ifndef __SVGA256_H__
#define __SVGA256_H__
extern int far _Cdecl Svga256_fdriver[];
/* These are the currently supported modes */
#define SVGA320x200x256 0 /* 320x200x256 Standard VGA */
#define SVGA640x400x256 1 /* 640x400x256 Svga/VESA */
#define SVGA640x480x256 2 /* 640x480x256 Svga/VESA */
#define SVGA800x600x256 3 /* 800x600x256 Svga/VESA */
#define SVGA1024x768x256 4 /* 1024x768x256 Svga/VESA */
#define SVGA640x350x256 5 /* 640x350x256 Svga/VESA */
#define SVGA1280x1024x256 6 /* 1280x1024x256 Svga/VESA */
#endif /* __SVGA256_H__ */