From 1ea76d2e378bcd3c03a869a27a26805907d5ad86 Mon Sep 17 00:00:00 2001 From: Jasmine Iwanek Date: Fri, 7 Jun 2024 02:39:45 -0400 Subject: [PATCH] Correct onboard memory on the 5170 --- 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 9723d53cd..e841a8538 100644 --- a/src/machine/machine_table.c +++ b/src/machine/machine_table.c @@ -2545,8 +2545,8 @@ const machine_t machines[] = { .flags = MACHINE_FLAGS_NONE, .ram = { .min = 256, - .max = 15872, - .step = 128 + .max = 512, + .step = 256 }, .nvrmask = 63, .kbc_device = NULL,