Merge pull request #4517 from jriwanek-forks/memory

Correct max mem on IBM 286 clones and the XT/286
This commit is contained in:
Miran Grča
2024-06-08 06:09:44 +02:00
committed by GitHub

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,