Removed ROM set checking from several files.
This commit is contained in:
@@ -51,7 +51,7 @@
|
||||
* NOTE: Still need to figure out a way to load/save ConfigSys and
|
||||
* HardRAM stuff. Needs to be linked in to the NVR code.
|
||||
*
|
||||
* Version: @(#)m_xt_t1000.c 1.0.9 2018/08/16
|
||||
* Version: @(#)m_xt_t1000.c 1.0.10 2018/09/15
|
||||
*
|
||||
* Authors: Fred N. van Kempen, <decwiz@yahoo.com>
|
||||
* Miran Grca, <mgrca8@gmail.com>
|
||||
@@ -446,9 +446,9 @@ ems_set_port(t1000_t *sys, uint8_t val)
|
||||
ems_set_port(t1000_t *sys, uint8_t val)
|
||||
{
|
||||
int n;
|
||||
|
||||
|
||||
#if 0
|
||||
t1000_log("ems_set_port(%d)", val & 0x0f);
|
||||
t1000_log("ems_set_port(%d)", val & 0x0f);
|
||||
#endif
|
||||
if (sys->ems_port) {
|
||||
for (n = 0; n <= 0xc000; n += 0x4000) {
|
||||
@@ -913,6 +913,9 @@ machine_xt_t1000_init(const machine_t *model)
|
||||
nmi_init();
|
||||
|
||||
tc8521_init(&t1000.nvr, model->nvrmask + 1);
|
||||
|
||||
t1000_nvr_load();
|
||||
nvr_set_ven_save(t1000_nvr_save);
|
||||
|
||||
if (gfxcard == GFX_INTERNAL)
|
||||
device_add(&t1000_video_device);
|
||||
@@ -967,8 +970,11 @@ machine_xt_t1200_init(const machine_t *model)
|
||||
nmi_init();
|
||||
|
||||
tc8521_init(&t1000.nvr, model->nvrmask + 1);
|
||||
|
||||
if (gfxcard == GFX_INTERNAL)
|
||||
|
||||
t1200_nvr_load();
|
||||
nvr_set_ven_save(t1200_nvr_save);
|
||||
|
||||
if (gfxcard == GFX_INTERNAL)
|
||||
device_add(&t1200_video_device);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user