Remove the OpenAT entirely - its BIOS never rearched any sort of actually usable state (and is also not actually Open, just visible source).

This commit is contained in:
OBattler
2025-05-28 09:51:08 +02:00
parent d49a71ee6e
commit e9c7795c7a
5 changed files with 2 additions and 75 deletions

View File

@@ -388,21 +388,3 @@ machine_at_wellamerastar_init(const machine_t *model)
return ret;
}
#ifdef USE_OPEN_AT
int
machine_at_openat_init(const machine_t *model)
{
int ret;
ret = bios_load_linear("roms/machines/openat/bios.bin",
0x000f0000, 65536, 0);
if (bios_only || !ret)
return ret;
machine_at_ibm_common_init(model);
return ret;
}
#endif /* USE_OPEN_AT */