Add the Lanner Electronics IAC-H488.
This commit is contained in:
@@ -536,6 +536,7 @@ extern int machine_at_g486ip_init(const machine_t *);
|
|||||||
extern int machine_at_itoxstar_init(const machine_t *);
|
extern int machine_at_itoxstar_init(const machine_t *);
|
||||||
extern int machine_at_arb1423c_init(const machine_t *);
|
extern int machine_at_arb1423c_init(const machine_t *);
|
||||||
extern int machine_at_arb1479_init(const machine_t *);
|
extern int machine_at_arb1479_init(const machine_t *);
|
||||||
|
extern int machine_at_iach488_init(const machine_t *);
|
||||||
extern int machine_at_pcm9340_init(const machine_t *);
|
extern int machine_at_pcm9340_init(const machine_t *);
|
||||||
extern int machine_at_pcm5330_init(const machine_t *);
|
extern int machine_at_pcm5330_init(const machine_t *);
|
||||||
|
|
||||||
|
|||||||
@@ -1780,6 +1780,30 @@ machine_at_arb1479_init(const machine_t *model)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
machine_at_iach488_init(const machine_t *model)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = bios_load_linear("roms/machines/iach488/FH48800B.980",
|
||||||
|
0x000c0000, 262144, 0);
|
||||||
|
|
||||||
|
if (bios_only || !ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
machine_at_common_init(model);
|
||||||
|
|
||||||
|
pci_init(PCI_CONFIG_TYPE_1);
|
||||||
|
pci_register_slot(0x0B, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0);
|
||||||
|
pci_register_slot(0x0C, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
|
||||||
|
device_add(&w83977f_device);
|
||||||
|
device_add(&keyboard_ps2_ami_pci_device);
|
||||||
|
device_add(&stpc_consumer2_device);
|
||||||
|
device_add(&sst_flash_29ee020_device);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
machine_at_pcm9340_init(const machine_t *model)
|
machine_at_pcm9340_init(const machine_t *model)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -8070,6 +8070,46 @@ const machine_t machines[] = {
|
|||||||
.snd_device = NULL,
|
.snd_device = NULL,
|
||||||
.net_device = NULL
|
.net_device = NULL
|
||||||
},
|
},
|
||||||
|
/* Has a Winbond W83977F Super I/O chip with on-chip KBC with AMIKey-2 KBC
|
||||||
|
firmware. */
|
||||||
|
{
|
||||||
|
.name = "[STPC Consumer-II] Lanner Electronics IAC-H488",
|
||||||
|
.internal_name = "iach488",
|
||||||
|
.type = MACHINE_TYPE_486_MISC,
|
||||||
|
.chipset = MACHINE_CHIPSET_STPC_CONSUMER_II,
|
||||||
|
.init = machine_at_iach488_init,
|
||||||
|
.pad = 0,
|
||||||
|
.pad0 = 0,
|
||||||
|
.pad1 = MACHINE_AVAILABLE,
|
||||||
|
.pad2 = 0,
|
||||||
|
.cpu = {
|
||||||
|
.package = CPU_PKG_STPC,
|
||||||
|
.block = CPU_BLOCK_NONE,
|
||||||
|
.min_bus = 66666667,
|
||||||
|
.max_bus = 66666667,
|
||||||
|
.min_voltage = 0,
|
||||||
|
.max_voltage = 0,
|
||||||
|
.min_multi = 2.0,
|
||||||
|
.max_multi = 2.0
|
||||||
|
},
|
||||||
|
.bus_flags = MACHINE_PS2,
|
||||||
|
.flags = MACHINE_IDE_DUAL | MACHINE_APM,
|
||||||
|
.ram = {
|
||||||
|
.min = 32768,
|
||||||
|
.max = 131072,
|
||||||
|
.step = 32768
|
||||||
|
},
|
||||||
|
.nvrmask = 255,
|
||||||
|
.kbc_device = NULL,
|
||||||
|
.kbc_p1 = 0,
|
||||||
|
.gpio = 0,
|
||||||
|
.device = NULL,
|
||||||
|
.fdc_device = NULL,
|
||||||
|
.sio_device = NULL,
|
||||||
|
.vid_device = NULL,
|
||||||
|
.snd_device = NULL,
|
||||||
|
.net_device = NULL
|
||||||
|
},
|
||||||
/* Has a Winbond W83977F Super I/O chip with on-chip KBC with AMIKey-2 KBC
|
/* Has a Winbond W83977F Super I/O chip with on-chip KBC with AMIKey-2 KBC
|
||||||
firmware. */
|
firmware. */
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user