Added the Siemens Award keyboard controller and a small hack (will have to do due to the scarcity of information until we get ahold of an actual Siemens PCD-2L) to make the Siemens PCD-2L POST correctly again, fixes #3444.

This commit is contained in:
OBattler
2023-07-03 02:36:17 +02:00
parent feece51403
commit e328a3c2de
3 changed files with 78 additions and 5 deletions

View File

@@ -246,7 +246,14 @@ machine_at_siemens_init(const machine_t *model)
if (bios_only || !ret)
return ret;
machine_at_ibm_common_init(model);
machine_at_common_init_ex(model, 1);
device_add(&keyboard_at_siemens_device);
mem_remap_top(384);
if (fdc_type == FDC_INTERNAL)
device_add(&fdc_at_device);
return ret;
}