src/floppy
This commit is contained in:
@@ -114,11 +114,17 @@ static int b215_available(void)
|
|||||||
static const device_config_t b215_config[] = {
|
static const device_config_t b215_config[] = {
|
||||||
// clang-format off
|
// clang-format off
|
||||||
{
|
{
|
||||||
"bios_addr", "BIOS Address:", CONFIG_HEX20, "", 0xca000, "", { 0 },
|
.name = "bios_addr",
|
||||||
{
|
.description = "BIOS Address:",
|
||||||
{ "CA00H", 0xca000 },
|
.type = CONFIG_HEX20,
|
||||||
{ "CC00H", 0xcc000 },
|
.default_string = "",
|
||||||
{ "" }
|
.default_int = 0xca000,
|
||||||
|
.file_filter = "",
|
||||||
|
.spinner = { 0 },
|
||||||
|
.selection = {
|
||||||
|
{ .description = "CA00H", .value = 0xca000 },
|
||||||
|
{ .description = "CC00H", .value = 0xcc000 },
|
||||||
|
{ .description = "" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{ "", "", -1 }
|
{ "", "", -1 }
|
||||||
@@ -138,4 +144,3 @@ const device_t fdc_b215_device = {
|
|||||||
.force_redraw = NULL,
|
.force_redraw = NULL,
|
||||||
.config = b215_config
|
.config = b215_config
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -124,16 +124,22 @@ static int pii_158_available(void)
|
|||||||
static const device_config_t pii_config[] = {
|
static const device_config_t pii_config[] = {
|
||||||
// clang-format off
|
// clang-format off
|
||||||
{
|
{
|
||||||
"bios_addr", "BIOS Address:", CONFIG_HEX20, "", 0xce000, "", { 0 },
|
.name = "bios_addr",
|
||||||
{
|
.description = "BIOS Address:",
|
||||||
{ "Disabled", 0 },
|
.type = CONFIG_HEX20,
|
||||||
{ "CA00H", 0xca000 },
|
.default_string = "",
|
||||||
{ "CC00H", 0xcc000 },
|
.default_int = 0xce000,
|
||||||
{ "CE00H", 0xce000 },
|
.file_filter = "",
|
||||||
{ "" }
|
.spinner = { 0 },
|
||||||
|
.selection = {
|
||||||
|
{ .description = "Disabled", .value = 0 },
|
||||||
|
{ .description = "CA00H", .value = 0xca000 },
|
||||||
|
{ .description = "CC00H", .value = 0xcc000 },
|
||||||
|
{ .description = "CE00H", .value = 0xce000 },
|
||||||
|
{ .description = "" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{ "", "", -1 }
|
{ .name = "", .description = "", .type = CONFIG_END }
|
||||||
// clang-format on
|
// clang-format on
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user