From 006207151f6cf4df9e1095982a5910c07cfe8024 Mon Sep 17 00:00:00 2001 From: Jasmine Iwanek Date: Thu, 6 Jun 2024 23:59:28 -0400 Subject: [PATCH] 64/256KB Memory Expansion Option --- src/device/isamem.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/device/isamem.c b/src/device/isamem.c index 04f04eef7..dbbd779a4 100644 --- a/src/device/isamem.c +++ b/src/device/isamem.c @@ -957,9 +957,9 @@ static const device_config_t ibmxt_config[] = { .default_int = 128, .file_filter = "", .spinner = { - .min = 0, - .max = 512, - .step = 16 + .min = 64, + .max = 576, + .step = 64 }, .selection = { { 0 } } }, @@ -982,7 +982,7 @@ static const device_config_t ibmxt_config[] = { }; static const device_t ibmxt_device = { - .name = "IBM PC/XT Memory Expansion", + .name = "IBM PC/XT 64/256K Memory Expansion Option", .internal_name = "ibmxt", .flags = DEVICE_ISA, .local = ISAMEM_IBMXT_CARD,