Add the Dell System 333s/L.

This commit is contained in:
OBattler
2025-05-28 19:41:27 +02:00
parent e9c7795c7a
commit 9ebcc44350
9 changed files with 152 additions and 11 deletions

View File

@@ -4247,7 +4247,10 @@ gd54xx_init(const device_t *info)
break;
case CIRRUS_ID_CLGD5420:
romfn = BIOS_GD5420_PATH;
if (info->local & 0x200)
romfn = NULL;
else
romfn = BIOS_GD5420_PATH;
break;
case CIRRUS_ID_CLGD5422:
@@ -4978,6 +4981,20 @@ const device_t gd5420_isa_device = {
.config = gd542x_config,
};
const device_t gd5420_onboard_device = {
.name = "Cirrus Logic GD5420 (ISA)",
.internal_name = "cl_gd5420_isa",
.flags = DEVICE_ISA16,
.local = CIRRUS_ID_CLGD5420 | 0x200,
.init = gd54xx_init,
.close = gd54xx_close,
.reset = gd54xx_reset,
.available = NULL,
.speed_changed = gd54xx_speed_changed,
.force_redraw = gd54xx_force_redraw,
.config = gd542x_config,
};
const device_t gd5422_isa_device = {
.name = "Cirrus Logic GD5422 (ISA)",
.internal_name = "cl_gd5422_isa",