This commit is contained in:
Jasmine Iwanek
2022-04-03 02:08:21 -04:00
parent d1b274ace2
commit 0cf7bd5eb0
6 changed files with 434 additions and 249 deletions

View File

@@ -1159,14 +1159,20 @@ spock_available(void)
static const device_config_t spock_rom_config[] = {
// clang-format off
{
"bios_ver", "BIOS Version", CONFIG_SELECTION, "", 1, "", { 0 },
{
{ "1991 BIOS (>1GB)", 1 },
{ "1990 BIOS", 0 },
{ "" }
.name = "bios_ver",
.description = "BIOS Version",
.type = CONFIG_SELECTION,
.default_string = "",
.default_int = 1,
.file_filter = "",
.spinner = { 0 },
.selection = {
{ .description = "1991 BIOS (>1GB)", .value = 1 },
{ .description = "1990 BIOS", .value = 0 },
{ .description = "" }
},
},
{ "", "", -1 }
{ .name = "", .description = "", .type = CONFIG_END }
// clang-format on
};