Implemented experimental Headland HT102 chipset based EMS support.

Added Trigem 266M and AMA-932J machines.
Patch from Greatpsycho.
This commit is contained in:
SarahW 2018-11-12 20:32:53 +00:00
commit 461cb221ca
8 changed files with 560 additions and 11 deletions

View file

@ -191,6 +191,9 @@ device_t *video_card_getdevice(int card)
case ROM_ACER386:
return &oti067_acer386_device;
case ROM_AMA932J:
return &oti067_ama932j_device;
case ROM_IBMPS1_2011:
case ROM_IBMPS2_M30_286:
@ -391,6 +394,7 @@ int video_is_ega_vga()
case ROM_PC3086:
case ROM_MEGAPC:
case ROM_ACER386:
case ROM_AMA932J:
case ROM_IBMPS1_2011:
case ROM_IBMPS2_M30_286:
case ROM_IBMPS2_M50:
@ -522,6 +526,11 @@ void video_updatetiming()
if (gfxcard == GFX_BUILTIN)
timing = &timing_oti067;
break;
case ROM_AMA932J:
if (gfxcard == GFX_BUILTIN)
timing = &timing_oti067;
break;
case ROM_IBMPS1_2011:
case ROM_IBMPS2_M30_286:
@ -689,6 +698,10 @@ void video_init()
break;
}
return;
case ROM_AMA932J:
device_add(&oti067_ama932j_device);
return;
case ROM_IBMPS1_2011:
case ROM_IBMPS2_M30_286: