| Previous | 199869 Revisions | Next |
| r18359 Monday 8th October, 2012 at 18:04:13 UTC by Wilbert Pol |
|---|
| (MESS) a2600.c: Added the possibility to explicitly set the mapper type in software list entries for all supported mappers. (nw) |
| [src/mess/drivers] | a2600.c |
| r18358 | r18359 | |
|---|---|---|
| 610 | 610 | { |
| 611 | 611 | static const struct { const char *mapper_name; int mapper_type; } mapper_types[] = |
| 612 | 612 | { |
| 613 | { "4in1", mode4in1 }, | |
| 614 | { "8in1", mode8in1 }, | |
| 613 | { "F8", modeF8 }, | |
| 614 | { "FA", modeFA }, | |
| 615 | { "F6", modeF6 }, | |
| 616 | { "F4", modeF4 }, | |
| 617 | { "FE", modeFE }, | |
| 618 | { "E0", modeE0 }, | |
| 619 | { "3F", mode3F }, | |
| 620 | { "UA", modeUA }, | |
| 621 | { "E7", modeE7 }, | |
| 622 | { "DC", modeDC }, | |
| 623 | { "CV", modeCV }, | |
| 624 | { "3E", mode3E }, | |
| 625 | { "SS", modeSS }, | |
| 626 | { "FV", modeFV }, | |
| 627 | { "DPC", modeDPC }, | |
| 628 | { "32in1", mode32in1 }, | |
| 629 | { "JVP", modeJVP }, | |
| 630 | { "4in1", mode4in1 }, | |
| 631 | { "8in1", mode8in1 }, | |
| 615 | 632 | }; |
| 616 | 633 | |
| 617 | 634 | for (int i = 0; i < ARRAY_LENGTH(mapper_types) && state->m_banking_mode == 0xff; i++) |
| Previous | 199869 Revisions | Next |