Add BocaRAM/XT
This commit is contained in:
@@ -98,9 +98,10 @@
|
|||||||
#define ISAMEM_EV159_CARD 10
|
#define ISAMEM_EV159_CARD 10
|
||||||
#define ISAMEM_RAMPAGEXT_CARD 11
|
#define ISAMEM_RAMPAGEXT_CARD 11
|
||||||
#define ISAMEM_ABOVEBOARD_CARD 12
|
#define ISAMEM_ABOVEBOARD_CARD 12
|
||||||
#define ISAMEM_BRAT_CARD 13
|
#define ISAMEM_BRXT_CARD 13
|
||||||
#define ISAMEM_EV165A_CARD 14
|
#define ISAMEM_BRAT_CARD 14
|
||||||
#define ISAMEM_LOTECH_CARD 15
|
#define ISAMEM_EV165A_CARD 15
|
||||||
|
#define ISAMEM_LOTECH_CARD 16
|
||||||
|
|
||||||
#define ISAMEM_DEBUG 0
|
#define ISAMEM_DEBUG 0
|
||||||
|
|
||||||
@@ -533,7 +534,8 @@ isamem_init(const device_t *info)
|
|||||||
case ISAMEM_BRAT_CARD: /* BocaRAM/AT */
|
case ISAMEM_BRAT_CARD: /* BocaRAM/AT */
|
||||||
dev->base_addr = device_get_config_hex16("base");
|
dev->base_addr = device_get_config_hex16("base");
|
||||||
dev->total_size = device_get_config_int("size");
|
dev->total_size = device_get_config_int("size");
|
||||||
dev->start_addr = device_get_config_int("start");
|
if (!!device_get_config_int("start"))
|
||||||
|
dev->start_addr = device_get_config_int("start");
|
||||||
dev->frame_addr = device_get_config_hex20("frame");
|
dev->frame_addr = device_get_config_hex20("frame");
|
||||||
if (!!device_get_config_int("width"))
|
if (!!device_get_config_int("width"))
|
||||||
dev->flags |= FLAG_WIDE;
|
dev->flags |= FLAG_WIDE;
|
||||||
@@ -541,6 +543,7 @@ isamem_init(const device_t *info)
|
|||||||
dev->flags |= FLAG_FAST;
|
dev->flags |= FLAG_FAST;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case ISAMEM_BRXT_CARD: /* BocaRAM/XT */
|
||||||
case ISAMEM_LOTECH_CARD:
|
case ISAMEM_LOTECH_CARD:
|
||||||
dev->base_addr = device_get_config_hex16("base");
|
dev->base_addr = device_get_config_hex16("base");
|
||||||
dev->total_size = device_get_config_int("size");
|
dev->total_size = device_get_config_int("size");
|
||||||
@@ -1421,6 +1424,70 @@ static const device_t ev165a_device = {
|
|||||||
.config = ev165a_config
|
.config = ev165a_config
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const device_config_t brxt_config[] = {
|
||||||
|
// clang-format off
|
||||||
|
{
|
||||||
|
.name = "base",
|
||||||
|
.description = "Address",
|
||||||
|
.type = CONFIG_HEX16,
|
||||||
|
.default_string = "",
|
||||||
|
.default_int = 0x0268,
|
||||||
|
.file_filter = "",
|
||||||
|
.spinner = { 0 },
|
||||||
|
.selection = {
|
||||||
|
{ .description = "208H", .value = 0x0208 },
|
||||||
|
{ .description = "218H", .value = 0x0218 },
|
||||||
|
{ .description = "258H", .value = 0x0258 },
|
||||||
|
{ .description = "268H", .value = 0x0268 },
|
||||||
|
{ .description = "" }
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.name = "frame",
|
||||||
|
.description = "Frame Address",
|
||||||
|
.type = CONFIG_HEX20,
|
||||||
|
.default_string = "",
|
||||||
|
.default_int = 0xD0000,
|
||||||
|
.file_filter = "",
|
||||||
|
.spinner = { 0 },
|
||||||
|
.selection = {
|
||||||
|
{ .description = "D000H", .value = 0xD0000 },
|
||||||
|
{ .description = "E000H", .value = 0xE0000 },
|
||||||
|
{ .description = "" }
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.name = "size",
|
||||||
|
.description = "Memory Size",
|
||||||
|
.type = CONFIG_SPINNER,
|
||||||
|
.default_string = "",
|
||||||
|
.default_int = 512,
|
||||||
|
.file_filter = "",
|
||||||
|
.spinner = {
|
||||||
|
.min = 0,
|
||||||
|
.max = 2048,
|
||||||
|
.step = 512
|
||||||
|
},
|
||||||
|
.selection = { { 0 } }
|
||||||
|
},
|
||||||
|
{ .name = "", .description = "", .type = CONFIG_END }
|
||||||
|
// clang-format on
|
||||||
|
};
|
||||||
|
|
||||||
|
static const device_t brxt_device = {
|
||||||
|
.name = "BocaRAM/XT",
|
||||||
|
.internal_name = "brxt",
|
||||||
|
.flags = DEVICE_ISA,
|
||||||
|
.local = ISAMEM_BRXT_CARD,
|
||||||
|
.init = isamem_init,
|
||||||
|
.close = isamem_close,
|
||||||
|
.reset = NULL,
|
||||||
|
{ .available = NULL },
|
||||||
|
.speed_changed = NULL,
|
||||||
|
.force_redraw = NULL,
|
||||||
|
.config = brxt_config
|
||||||
|
};
|
||||||
|
|
||||||
#if defined(DEV_BRANCH) && defined(USE_ISAMEM_BRAT)
|
#if defined(DEV_BRANCH) && defined(USE_ISAMEM_BRAT)
|
||||||
static const device_config_t brat_config[] = {
|
static const device_config_t brat_config[] = {
|
||||||
// clang-format off
|
// clang-format off
|
||||||
@@ -1809,6 +1876,7 @@ static const struct {
|
|||||||
{ &ems5150_device },
|
{ &ems5150_device },
|
||||||
{ &ev159_device },
|
{ &ev159_device },
|
||||||
{ &ev165a_device },
|
{ &ev165a_device },
|
||||||
|
{ &brxt_device },
|
||||||
#if defined(DEV_BRANCH) && defined(USE_ISAMEM_BRAT)
|
#if defined(DEV_BRANCH) && defined(USE_ISAMEM_BRAT)
|
||||||
{ &brat_device },
|
{ &brat_device },
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user