(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:
Wilbert Pol 2012-10-08 18:04:13 +00:00
parent 50dae16188
commit c784c34cc1

View File

@ -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 },
};