mappers_list.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * mappers_list.h
  3. * TI-NESulator.X
  4. *
  5. * Created by Manoël Trapier on 25/10/07.
  6. * Copyright 2007-2008 986 Corp. All rights reserved.
  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/iremh3001.h"
  15. #include "mappers/mmc1.h"
  16. #include "mappers/mmc3.h"
  17. #include "mappers/mmc4.h"
  18. Mapper Mappers[] = {
  19. { 0 , "No Mapper", norom_InitMapper, norom_MapperIRQ, norom_MapperDump },
  20. { 7 , "AOROM", aorom_InitMapper, norom_MapperIRQ, aorom_MapperDump },
  21. { 2 , "CNROM", cnrom_InitMapper, norom_MapperIRQ, cnrom_MapperDump },
  22. { 3 , "UNROM", unrom_InitMapper, norom_MapperIRQ, unrom_MapperDump },
  23. { 1 , "MMC1", mmc1_InitMapper, norom_MapperIRQ, mmc1_MapperDump },
  24. { 4 , "MMC3", mmc3_InitMapper, mmc3_MapperIRQ, mmc3_MapperDump },
  25. { 10, "MMC4", mmc3_InitMapper, norom_MapperIRQ, mmc4_MapperDump },
  26. { 65, "Irem H3001", iremh3001_InitMapper, iremh3001_MapperIRQ, iremh3001_MapperDump },
  27. /* EOL tag */
  28. { 0, NULL, NULL, NULL, NULL }
  29. };