From 3493d5fc737e5d009f097f7bdd437a9059d881f9 Mon Sep 17 00:00:00 2001 From: bozoscum Date: Wed, 15 Oct 2025 23:12:39 +0800 Subject: [PATCH] add Multitech PC-900 BIOS ROM V2.07B and V3.01B (#6350) --- src/machine/m_at_286.c | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/src/machine/m_at_286.c b/src/machine/m_at_286.c index 20baec312..357a0f872 100644 --- a/src/machine/m_at_286.c +++ b/src/machine/m_at_286.c @@ -367,7 +367,26 @@ static const device_config_t pc900_config[] = { .local = 0, .size = 32768, .files = { "roms/machines/pc900/cbm_pc40_v207a_xc.bin", "" } - } + }, + { + .name = "BIOS V2.07B", + .internal_name = "pc900_v207b", + .bios_type = BIOS_NORMAL, + .files_no = 1, + .local = 0, + .size = 32768, + .files = { "roms/machines/pc900/mpf_pc900_v207b.bin", "" } + }, + { + .name = "BIOS V3.01B", + .internal_name = "pc900_v301b", + .bios_type = BIOS_NORMAL, + .files_no = 1, + .local = 0, + .size = 32768, + .files = { "roms/machines/pc900/cbm_pc40_v301b.bin", "" } + }, + { .files_no = 0 } }, }, { .name = "", .description = "", .type = CONFIG_END }