@@ -792,6 +792,7 @@ extern int machine_xt_v20xt_init(const machine_t *);
|
|||||||
|
|
||||||
extern int machine_xt_iskra3104_init(const machine_t *);
|
extern int machine_xt_iskra3104_init(const machine_t *);
|
||||||
extern int machine_xt_pravetz16_imko4_init(const machine_t *);
|
extern int machine_xt_pravetz16_imko4_init(const machine_t *);
|
||||||
|
extern int machine_xt_micoms_xl7turbo_init(const machine_t *);
|
||||||
|
|
||||||
/* m_xt_compaq.c */
|
/* m_xt_compaq.c */
|
||||||
extern int machine_xt_compaq_deskpro_init(const machine_t *);
|
extern int machine_xt_compaq_deskpro_init(const machine_t *);
|
||||||
|
@@ -364,6 +364,21 @@ machine_xt_pravetz16_imko4_init(const machine_t *model)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
machine_xt_micoms_xl7turbo_init(const machine_t *model)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = bios_load_linear("roms/machines/mxl7t/XL7_TURBO.BIN",
|
||||||
|
0x000fe000, 8192, 0);
|
||||||
|
|
||||||
|
if (bios_only || !ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
machine_xt_init_ex(model);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
machine_xt_pc4i_init(const machine_t *model)
|
machine_xt_pc4i_init(const machine_t *model)
|
||||||
{
|
{
|
||||||
|
@@ -923,6 +923,42 @@ const machine_t machines[] = {
|
|||||||
.snd_device = NULL,
|
.snd_device = NULL,
|
||||||
.net_device = NULL
|
.net_device = NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.name = "[8088] Micoms XL-7 Turbo",
|
||||||
|
.internal_name = "mxl7t",
|
||||||
|
.type = MACHINE_TYPE_8088,
|
||||||
|
.chipset = MACHINE_CHIPSET_DISCRETE,
|
||||||
|
.init = machine_xt_micoms_xl7turbo_init,
|
||||||
|
.pad = 0,
|
||||||
|
.pad0 = 0,
|
||||||
|
.pad1 = MACHINE_AVAILABLE,
|
||||||
|
.pad2 = 0,
|
||||||
|
.cpu = {
|
||||||
|
.package = CPU_PKG_8088,
|
||||||
|
.block = CPU_BLOCK_NONE,
|
||||||
|
.min_bus = 0,
|
||||||
|
.max_bus = 0,
|
||||||
|
.min_voltage = 0,
|
||||||
|
.max_voltage = 0,
|
||||||
|
.min_multi = 0,
|
||||||
|
.max_multi = 0
|
||||||
|
},
|
||||||
|
.bus_flags = MACHINE_PC,
|
||||||
|
.flags = MACHINE_FLAGS_NONE,
|
||||||
|
.ram = {
|
||||||
|
.min = 64,
|
||||||
|
.max = 640,
|
||||||
|
.step = 64
|
||||||
|
},
|
||||||
|
.nvrmask = 0,
|
||||||
|
.kbc = KBC_IBM_PC_XT,
|
||||||
|
.kbc_p1 = 0xff00,
|
||||||
|
.gpio = 0xffffffff,
|
||||||
|
.device = NULL,
|
||||||
|
.vid_device = NULL,
|
||||||
|
.snd_device = NULL,
|
||||||
|
.net_device = NULL
|
||||||
|
},
|
||||||
{
|
{
|
||||||
.name = "[8088] NCR PC4i",
|
.name = "[8088] NCR PC4i",
|
||||||
.internal_name = "pc4i",
|
.internal_name = "pc4i",
|
||||||
|
Reference in New Issue
Block a user