From caf44716c4cbd86b8fd627970d9cfded2b0e6b23 Mon Sep 17 00:00:00 2001 From: MaxwellS04 Date: Tue, 5 Aug 2025 14:20:38 +0700 Subject: [PATCH] Memory Table Fixes for Four Machines According to their official manuals (except for AP-4100AA, which is assumed and does not have a manual on The Retro Web). --- src/machine/machine_table.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/machine/machine_table.c b/src/machine/machine_table.c index 5ed16fed3..88a8527fb 100644 --- a/src/machine/machine_table.c +++ b/src/machine/machine_table.c @@ -6458,7 +6458,7 @@ const machine_t machines[] = { .flags = MACHINE_APM, .ram = { .min = 1024, - .max = 49152, + .max = 65536, .step = 1024 }, .nvrmask = 127, @@ -8324,7 +8324,7 @@ const machine_t machines[] = { .flags = MACHINE_SUPER_IO | MACHINE_IDE | MACHINE_APM, .ram = { .min = 1024, - .max = 32768, + .max = 131072, .step = 1024 }, .nvrmask = 127, @@ -8365,7 +8365,7 @@ const machine_t machines[] = { .flags = MACHINE_APM, .ram = { .min = 1024, - .max = 40960, + .max = 131072, .step = 1024 }, .nvrmask = 127, @@ -8704,8 +8704,8 @@ const machine_t machines[] = { .bus_flags = MACHINE_PS2, .flags = MACHINE_SUPER_IO | MACHINE_IDE | MACHINE_APM, /* Has onboard video: C&T F65545 */ .ram = { - .min = 1024, - .max = 32768, + .min = 8192, + .max = 73728, .step = 1024 }, .nvrmask = 255,