Atari PC 4
This commit is contained in:
@@ -450,6 +450,7 @@ extern int machine_at_mr286_init(const machine_t *);
|
|||||||
|
|
||||||
extern int machine_at_neat_init(const machine_t *);
|
extern int machine_at_neat_init(const machine_t *);
|
||||||
extern int machine_at_neat_ami_init(const machine_t *);
|
extern int machine_at_neat_ami_init(const machine_t *);
|
||||||
|
extern int machine_at_ataripc4_init(const machine_t *);
|
||||||
|
|
||||||
extern int machine_at_quadt386sx_init(const machine_t *);
|
extern int machine_at_quadt386sx_init(const machine_t *);
|
||||||
|
|
||||||
|
|||||||
@@ -212,6 +212,37 @@ machine_at_neat_ami_init(const machine_t *model)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
// Onboard Paradise PVGA1A-JK VGA Graphics
|
||||||
|
// Data Technology Corporation DTC7187 RLL Controller
|
||||||
|
int
|
||||||
|
machine_at_ataripc4_init(const machine_t *model)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = bios_load_interleaved("roms/machines/ataripc4/AMI_PC4X_1.7_EVEN.BIN",
|
||||||
|
"roms/machines/ataripc4/AMI_PC4X_1.7_ODD.BIN",
|
||||||
|
#if 0
|
||||||
|
ret = bios_load_interleaved("roms/machines/ataripc4/ami_pc4x_1.7_even.bin",
|
||||||
|
"roms/machines/ataripc4/ami_pc4x_1.7_odd.bin",
|
||||||
|
#endif
|
||||||
|
0x000f0000, 65536, 0);
|
||||||
|
|
||||||
|
if (bios_only || !ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
machine_at_common_init(model);
|
||||||
|
|
||||||
|
device_add(&neat_device);
|
||||||
|
|
||||||
|
if (fdc_current[0] == FDC_INTERNAL)
|
||||||
|
device_add(&fdc_at_device);
|
||||||
|
|
||||||
|
device_add(&keyboard_at_ami_device);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
machine_at_px286_init(const machine_t *model)
|
machine_at_px286_init(const machine_t *model)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3444,6 +3444,45 @@ const machine_t machines[] = {
|
|||||||
.snd_device = NULL,
|
.snd_device = NULL,
|
||||||
.net_device = NULL
|
.net_device = NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.name = "[NEAT] Atari PC 4",
|
||||||
|
.internal_name = "ataripc4",
|
||||||
|
.type = MACHINE_TYPE_286,
|
||||||
|
.chipset = MACHINE_CHIPSET_NEAT,
|
||||||
|
.init = machine_at_ataripc4_init,
|
||||||
|
.p1_handler = NULL,
|
||||||
|
.gpio_handler = NULL,
|
||||||
|
.available_flag = MACHINE_AVAILABLE,
|
||||||
|
.gpio_acpi_handler = NULL,
|
||||||
|
.cpu = {
|
||||||
|
.package = CPU_PKG_286,
|
||||||
|
.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_AT,
|
||||||
|
.flags = MACHINE_FDC,
|
||||||
|
.ram = {
|
||||||
|
.min = 512,
|
||||||
|
.max = 8192,
|
||||||
|
.step = 128
|
||||||
|
},
|
||||||
|
.nvrmask = 127,
|
||||||
|
.kbc_device = &keyboard_at_ami_device,
|
||||||
|
.kbc_p1 = 0xff,
|
||||||
|
.gpio = 0xffffffff,
|
||||||
|
.gpio_acpi = 0xffffffff,
|
||||||
|
.device = NULL,
|
||||||
|
.fdc_device = NULL, //&fdc_at_device,
|
||||||
|
.sio_device = NULL,
|
||||||
|
.vid_device = NULL,
|
||||||
|
.snd_device = NULL,
|
||||||
|
.net_device = NULL
|
||||||
|
},
|
||||||
/* This has "AMI KEYBOARD BIOS", most likely 'F'. */
|
/* This has "AMI KEYBOARD BIOS", most likely 'F'. */
|
||||||
{
|
{
|
||||||
.name = "[NEAT] DataExpert 286",
|
.name = "[NEAT] DataExpert 286",
|
||||||
|
|||||||
Reference in New Issue
Block a user