Merge pull request #4138 from maximus105/master
Fix for freezing of some 286 machines
This commit is contained in:
@@ -2579,7 +2579,7 @@ const machine_t machines[] = {
|
||||
.flags = MACHINE_XTA | MACHINE_VIDEO_FIXED,
|
||||
.ram = {
|
||||
.min = 512,
|
||||
.max = 16384,
|
||||
.max = 15360,
|
||||
.step = 512
|
||||
},
|
||||
.nvrmask = 63,
|
||||
@@ -2729,8 +2729,8 @@ const machine_t machines[] = {
|
||||
.cpu = {
|
||||
.package = CPU_PKG_286,
|
||||
.block = CPU_BLOCK_NONE,
|
||||
.min_bus = 0,
|
||||
.max_bus = 0,
|
||||
.min_bus = 6000000,
|
||||
.max_bus = 12500000,
|
||||
.min_voltage = 0,
|
||||
.max_voltage = 0,
|
||||
.min_multi = 0,
|
||||
@@ -2740,8 +2740,8 @@ const machine_t machines[] = {
|
||||
.flags = MACHINE_FLAGS_NONE,
|
||||
.ram = {
|
||||
.min = 640,
|
||||
.max = 16384,
|
||||
.step = 128
|
||||
.max = 14912,
|
||||
.step = 64
|
||||
},
|
||||
.nvrmask = 127,
|
||||
.kbc_device = NULL,
|
||||
@@ -3093,8 +3093,8 @@ const machine_t machines[] = {
|
||||
.cpu = {
|
||||
.package = CPU_PKG_286,
|
||||
.block = CPU_BLOCK_NONE,
|
||||
.min_bus = 0,
|
||||
.max_bus = 0,
|
||||
.min_bus = 6000000,
|
||||
.max_bus = 12500000,
|
||||
.min_voltage = 0,
|
||||
.max_voltage = 0,
|
||||
.min_multi = 0,
|
||||
@@ -3504,7 +3504,7 @@ const machine_t machines[] = {
|
||||
.flags = MACHINE_IDE,
|
||||
.ram = {
|
||||
.min = 512,
|
||||
.max = 16384,
|
||||
.max = 8192,
|
||||
.step = 128
|
||||
},
|
||||
.nvrmask = 127,
|
||||
@@ -3544,7 +3544,7 @@ const machine_t machines[] = {
|
||||
.flags = MACHINE_FLAGS_NONE,
|
||||
.ram = {
|
||||
.min = 512,
|
||||
.max = 16384,
|
||||
.max = 8192,
|
||||
.step = 128
|
||||
},
|
||||
.nvrmask = 127,
|
||||
@@ -3704,7 +3704,7 @@ const machine_t machines[] = {
|
||||
.flags = MACHINE_IDE, /* Has internal video: C&T VGA 411 */
|
||||
.ram = {
|
||||
.min = 512,
|
||||
.max = 16384,
|
||||
.max = 8192,
|
||||
.step = 128
|
||||
},
|
||||
.nvrmask = 127,
|
||||
|
Reference in New Issue
Block a user