From 07dbe2dbb7999a4ae375afefccf5909f8d1c9a95 Mon Sep 17 00:00:00 2001 From: Kotochi <185547947+rushieda@users.noreply.github.com> Date: Sun, 16 Nov 2025 10:50:50 +0300 Subject: [PATCH] Change the max. RAM limit on HP Ruby USB and AOpen AP61 --- src/machine/machine_table.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/machine/machine_table.c b/src/machine/machine_table.c index cb2a9db0b..b4a6a1aca 100644 --- a/src/machine/machine_table.c +++ b/src/machine/machine_table.c @@ -14756,7 +14756,7 @@ const machine_t machines[] = { .flags = MACHINE_IDE_DUAL | MACHINE_VIDEO | MACHINE_SOUND | MACHINE_GAMEPORT | MACHINE_APM | MACHINE_USB, .ram = { .min = 8192, - .max = 131072, + .max = 524288, .step = 4096 }, .nvrmask = 255, @@ -17299,7 +17299,7 @@ const machine_t machines[] = { .flags = MACHINE_IDE_DUAL | MACHINE_APM, .ram = { .min = 8192, - .max = 524288, + .max = 262144, .step = 8192 }, .nvrmask = 127,