Major changes to video code - no more ROM set checks, and type and timings are set in a card's device init function;

Added the ExpertColor DSV3868P CF55 (S3 Vision868).
This commit is contained in:
OBattler
2018-09-19 20:13:32 +02:00
parent d3c24b9d1b
commit 69b57c49b0
45 changed files with 737 additions and 901 deletions

View File

@@ -9,7 +9,7 @@
* Emulation of the EGA, Chips & Technologies SuperEGA, and
* AX JEGA graphics cards.
*
* Version: @(#)vid_ega.c 1.0.17 2018/04/26
* Version: @(#)vid_ega.c 1.0.18 2018/09/19
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
@@ -48,6 +48,8 @@ enum {
};
static video_timings_t timing_ega = {VIDEO_ISA, 8, 16, 32, 8, 16, 32};
extern uint8_t edatlookup[4][4];
static uint8_t ega_rotate[8][256];
@@ -994,6 +996,8 @@ static void *ega_standalone_init(const device_t *info)
memset(ega, 0, sizeof(ega_t));
video_inform(VIDEO_FLAG_TYPE_SPECIAL, &timing_ega);
overscan_x = 16;
overscan_y = 28;
@@ -1134,7 +1138,7 @@ static void LoadFontxFile(wchar_t *fname)
void *jega_standalone_init(const device_t *info)
{
ega_t *ega = (ega_t *)ega_standalone_init(info);
ega_t *ega = (ega_t *) ega_standalone_init(info);
LoadFontxFile(L"roms/video/ega/JPNHN19X.FNT");
LoadFontxFile(L"roms/video/ega/JPNZN16X.FNT");