From 1db77f4a32d7673bcbe252543699e505221b9b71 Mon Sep 17 00:00:00 2001 From: toggo9 <121191375+toggo9@users.noreply.github.com> Date: Sat, 28 Jun 2025 21:17:59 +0200 Subject: [PATCH 1/2] take the DRS/M35 286 "fix" back Turns out it does work with 5120 KB, but just not with 5000 KB. --- src/machine/machine_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine/machine_table.c b/src/machine/machine_table.c index 64ef7cbc2..85a6610a8 100644 --- a/src/machine/machine_table.c +++ b/src/machine/machine_table.c @@ -4006,7 +4006,7 @@ const machine_t machines[] = { .flags = MACHINE_IDE | MACHINE_VIDEO, .ram = { .min = 512, - .max = 4096, + .max = 5120, .step = 128 }, .nvrmask = 127, From 034902ee5ec3a73fda673e556b8c16c63f3c2721 Mon Sep 17 00:00:00 2001 From: toggo9 <121191375+toggo9@users.noreply.github.com> Date: Sat, 28 Jun 2025 21:35:46 +0200 Subject: [PATCH 2/2] another V12P fix (to make compile possible again) --- src/machine/m_at_socket4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine/m_at_socket4.c b/src/machine/m_at_socket4.c index 12d8ccd1b..8d1f518b8 100644 --- a/src/machine/m_at_socket4.c +++ b/src/machine/m_at_socket4.c @@ -70,7 +70,7 @@ machine_at_v12p_init(const machine_t *model) device_add(&i430lx_device); device_add(&keyboard_ps2_acer_pci_device); device_add(&sio_zb_device); - device_add(&ali5105_device); + device_add_params(&pc87310_device, (void *) (PC87310_ALI)); device_add(&amd_am28f010_flash_device); device_add(&ncr53c810_onboard_pci_device);