mappers_list.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * Mapper list - The peTI-NESulator Project
  3. * mappers_list.h
  4. *
  5. * Created by Manoël Trapier on 25/10/07.
  6. * Copyright (c) 2002-2019 986-Studio.
  7. *
  8. */
  9. /* This file could be generated from the mappers directory... */
  10. #include "mappers/norom.h"
  11. #include "mappers/aorom.h"
  12. #include "mappers/unrom.h"
  13. #include "mappers/cnrom.h"
  14. #include "mappers/unrom512.h"
  15. #include "mappers/iremh3001.h"
  16. #include "mappers/mmc1.h"
  17. #include "mappers/mmc3.h"
  18. #include "mappers/mmc4.h"
  19. Mapper Mappers[] = {
  20. { 0 , "No Mapper", norom_InitMapper, norom_MapperIRQ, norom_MapperDump },
  21. { 7 , "AOROM", aorom_InitMapper, norom_MapperIRQ, aorom_MapperDump },
  22. { 2 , "CNROM", cnrom_InitMapper, norom_MapperIRQ, cnrom_MapperDump },
  23. { 3 , "UNROM", unrom_InitMapper, norom_MapperIRQ, unrom_MapperDump },
  24. { 1 , "MMC1", mmc1_InitMapper, norom_MapperIRQ, mmc1_MapperDump },
  25. { 4 , "MMC3", mmc3_InitMapper, mmc3_MapperIRQ, mmc3_MapperDump },
  26. { 10, "MMC4", mmc4_InitMapper, norom_MapperIRQ, mmc4_MapperDump },
  27. { 30, "UNROM512", unrom512_InitMapper, norom_MapperIRQ, unrom512_MapperDump },
  28. { 65, "Irem H3001", iremh3001_InitMapper, iremh3001_MapperIRQ, iremh3001_MapperDump },
  29. { 100, "Floppy Disk System", NULL, norom_MapperIRQ, norom_MapperDump },
  30. /* EOL tag */
  31. { 0, NULL, NULL, NULL, NULL }
  32. };