mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
(MESS) a2600.c: Added the possibility to explicitly set the mapper type in software list entries for all supported mappers. (nw)
This commit is contained in:
parent
50dae16188
commit
c784c34cc1
@ -610,6 +610,23 @@ static DEVICE_IMAGE_LOAD( a2600_cart )
|
||||
{
|
||||
static const struct { const char *mapper_name; int mapper_type; } mapper_types[] =
|
||||
{
|
||||
{ "F8", modeF8 },
|
||||
{ "FA", modeFA },
|
||||
{ "F6", modeF6 },
|
||||
{ "F4", modeF4 },
|
||||
{ "FE", modeFE },
|
||||
{ "E0", modeE0 },
|
||||
{ "3F", mode3F },
|
||||
{ "UA", modeUA },
|
||||
{ "E7", modeE7 },
|
||||
{ "DC", modeDC },
|
||||
{ "CV", modeCV },
|
||||
{ "3E", mode3E },
|
||||
{ "SS", modeSS },
|
||||
{ "FV", modeFV },
|
||||
{ "DPC", modeDPC },
|
||||
{ "32in1", mode32in1 },
|
||||
{ "JVP", modeJVP },
|
||||
{ "4in1", mode4in1 },
|
||||
{ "8in1", mode8in1 },
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user