Fixed several things, including built-in video on the Toshiba T1000 and T1200.

This commit is contained in:
OBattler
2018-03-02 21:57:37 +01:00
parent 33bc831f19
commit cb79f53c54
6 changed files with 32 additions and 64 deletions

View File

@@ -8,7 +8,7 @@
*
* Oak OTI037C/67/077 emulation.
*
* Version: @(#)vid_oak_oti.c 1.0.6 2018/03/02
* Version: @(#)vid_oak_oti.c 1.0.7 2018/03/02
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
@@ -301,10 +301,11 @@ oti037c_available(void)
return(rom_present(BIOS_37C_PATH));
}
static int
oti067_available(void)
oti067_077_available(void)
{
return(rom_present(BIOS_67_PATH));
return(rom_present(BIOS_77_PATH));
}
@@ -330,13 +331,6 @@ static device_config_t oti067_config[] =
};
static int
oti077_available(void)
{
return(rom_present(BIOS_77_PATH));
}
static device_config_t oti077_config[] =
{
{
@@ -380,7 +374,7 @@ device_t oti067_device =
DEVICE_ISA,
2,
oti_init, oti_close, NULL,
oti067_available,
oti067_077_available,
oti_speed_changed,
oti_force_redraw,
oti_add_status_info,
@@ -393,7 +387,7 @@ device_t oti077_device =
DEVICE_ISA,
5,
oti_init, oti_close, NULL,
oti077_available,
oti067_077_available,
oti_speed_changed,
oti_force_redraw,
oti_add_status_info,