The AMA-932J now indicates it is an Arche machine and correctly uses the Acer/ALi M5105 Super I/O chip.

This commit is contained in:
OBattler
2024-04-18 04:28:08 +02:00
parent ae834c1a2d
commit c74f168c29
2 changed files with 4 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ machine_at_headland_common_init(int type)
{
device_add(&keyboard_at_ami_device);
if (fdc_type == FDC_INTERNAL)
if ((type != 2) && (fdc_type == FDC_INTERNAL))
device_add(&fdc_at_device);
if (type == 2)
@@ -117,6 +117,8 @@ machine_at_ama932j_init(const machine_t *model)
machine_at_headland_common_init(2);
device_add(&ali5105_device);
return ret;
}