Added the Siemens PCD-2L

A N82330 discrete machine. Segfaults in some places
This commit is contained in:
tiseno100
2019-12-23 21:32:44 +02:00
committed by GitHub
parent 06b8732412
commit 58adb51dbe
6 changed files with 47 additions and 0 deletions

View File

@@ -237,6 +237,23 @@ machine_at_ibmxt286_init(const machine_t *model)
return ret;
}
#if defined(DEV_BRANCH) && defined(USE_SIEMENS)
int
machine_at_siemens_init(const machine_t *model)
{
int ret;
ret = bios_load_linear(L"roms/machines/siemens/286BIOS.BIN",
0x000f0000, 65536, 0);
if (bios_only || !ret)
return ret;
machine_at_ibm_common_init(model);
return ret;
}
#endif
#if defined(DEV_BRANCH) && defined(USE_OPEN_AT)
int