Merge pull request #5144 from jriwanek-forks/ev-165
Quick fixes to the Everex EV-165A
This commit is contained in:
@@ -1547,12 +1547,12 @@ static const device_config_t ev165a_config[] = {
|
|||||||
.description = "Memory size",
|
.description = "Memory size",
|
||||||
.type = CONFIG_SPINNER,
|
.type = CONFIG_SPINNER,
|
||||||
.default_string = "",
|
.default_string = "",
|
||||||
.default_int = 512,
|
.default_int = 256,
|
||||||
.file_filter = "",
|
.file_filter = "",
|
||||||
.spinner = {
|
.spinner = {
|
||||||
.min = 0,
|
.min = 0,
|
||||||
.max = 2048,
|
.max = 2048,
|
||||||
.step = 512
|
.step = 256
|
||||||
},
|
},
|
||||||
.selection = { { 0 } }
|
.selection = { { 0 } }
|
||||||
},
|
},
|
||||||
@@ -1561,12 +1561,12 @@ static const device_config_t ev165a_config[] = {
|
|||||||
.description = "Start Address",
|
.description = "Start Address",
|
||||||
.type = CONFIG_SPINNER,
|
.type = CONFIG_SPINNER,
|
||||||
.default_string = "",
|
.default_string = "",
|
||||||
.default_int = 0,
|
.default_int = 64,
|
||||||
.file_filter = "",
|
.file_filter = "",
|
||||||
.spinner = {
|
.spinner = {
|
||||||
.min = 0,
|
.min = 64,
|
||||||
.max = 896,
|
.max = 640,
|
||||||
.step = 128
|
.step = 64
|
||||||
},
|
},
|
||||||
.selection = { { 0 } }
|
.selection = { { 0 } }
|
||||||
},
|
},
|
||||||
@@ -1579,8 +1579,8 @@ static const device_config_t ev165a_config[] = {
|
|||||||
.file_filter = "",
|
.file_filter = "",
|
||||||
.spinner = {
|
.spinner = {
|
||||||
.min = 0,
|
.min = 0,
|
||||||
.max = 16384,
|
.max = 2048,
|
||||||
.step = 128
|
.step = 256
|
||||||
},
|
},
|
||||||
.selection = { { 0 } }
|
.selection = { { 0 } }
|
||||||
},
|
},
|
||||||
@@ -1622,7 +1622,7 @@ static const device_config_t ev165a_config[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const device_t ev165a_device = {
|
static const device_t ev165a_device = {
|
||||||
.name = "Everex Magi Magic EV-165A",
|
.name = "Everex Maxi Magic EV-165A",
|
||||||
.internal_name = "ev165a",
|
.internal_name = "ev165a",
|
||||||
.flags = DEVICE_ISA,
|
.flags = DEVICE_ISA,
|
||||||
.local = ISAMEM_EV165A_CARD,
|
.local = ISAMEM_EV165A_CARD,
|
||||||
|
|||||||
Reference in New Issue
Block a user