From 01779aaf4edefb91b9ed9d2c49fe418c31174d8c Mon Sep 17 00:00:00 2001 From: kotochi98 <185547947+kotochi98@users.noreply.github.com> Date: Sat, 24 Jan 2026 13:49:46 +0300 Subject: [PATCH] Add the beta evaluation BIOS for the MiTAC 6110zu and set the R804 retail BIOS as the default --- src/machine/m_at_slot1.c | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/src/machine/m_at_slot1.c b/src/machine/m_at_slot1.c index 713ab09c0..cbd0cdec5 100644 --- a/src/machine/m_at_slot1.c +++ b/src/machine/m_at_slot1.c @@ -1431,20 +1431,20 @@ static const device_config_t vei8_config[] = { .name = "bios", .description = "BIOS Version", .type = CONFIG_BIOS, - .default_string = "vei8", + .default_string = "6110zu", .default_int = 0, .file_filter = NULL, .spinner = { 0 }, .selection = { { 0 } }, .bios = { { - .name = "Award Modular BIOS v6.00PG - Revision QHW.10.01 (HP Sherwood-B)", - .internal_name = "vei8", + .name = "Award Modular BIOS v6.00PG - Revision 61100003 (beta)", + .internal_name = "6110zu0003", .bios_type = BIOS_NORMAL, .files_no = 1, .local = 0, .size = 262144, - .files = { "roms/machines/vei8/QHW1001.BIN", "" } + .files = { "roms/machines/vei8/61100003.BIN", "" } }, { .name = "Award Modular BIOS v6.00PG - Revision R804", @@ -1455,6 +1455,15 @@ static const device_config_t vei8_config[] = { .size = 262144, .files = { "roms/machines/vei8/r804.bin", "" } }, + { + .name = "Award Modular BIOS v6.00PG - Revision QHW.10.01 (HP Sherwood-B)", + .internal_name = "vei8", + .bios_type = BIOS_NORMAL, + .files_no = 1, + .local = 0, + .size = 262144, + .files = { "roms/machines/vei8/QHW1001.BIN", "" } + }, { .files_no = 0 } } },