Correct max mem on IBM 286 clones and the XT/286

This commit is contained in:
Jasmine Iwanek
2024-06-07 23:56:37 -04:00
parent 152c0cbf1d
commit 4c74fdd4cc

View File

@@ -2665,7 +2665,7 @@ const machine_t machines[] = {
.flags = MACHINE_FLAGS_NONE,
.ram = {
.min = 256,
.max = 15872,
.max = 640,
.step = 128
},
.nvrmask = 127,
@@ -2705,8 +2705,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,
@@ -3030,8 +3030,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,
@@ -3070,8 +3070,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,