mappers_list.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Mapper list - The TI-NESulator Project
  3. * mappers_list.h
  4. *
  5. * Created by Manoel TRAPIER on 25/10/07.
  6. * Copyright (c) 2003-2008 986Corp. All rights reserved.
  7. *
  8. * $LastChangedDate$
  9. * $Author$
  10. * $HeadURL$
  11. * $Revision$
  12. *
  13. */
  14. /* This file could be generated from the mappers directory... */
  15. #include "mappers/norom.h"
  16. #include "mappers/aorom.h"
  17. #include "mappers/unrom.h"
  18. #include "mappers/cnrom.h"
  19. #include "mappers/iremh3001.h"
  20. #include "mappers/mmc1.h"
  21. #include "mappers/mmc3.h"
  22. #include "mappers/mmc4.h"
  23. Mapper Mappers[] = {
  24. { 0 , "No Mapper", norom_InitMapper, norom_MapperIRQ, norom_MapperDump },
  25. { 7 , "AOROM", aorom_InitMapper, norom_MapperIRQ, aorom_MapperDump },
  26. { 2 , "CNROM", cnrom_InitMapper, norom_MapperIRQ, cnrom_MapperDump },
  27. { 3 , "UNROM", unrom_InitMapper, norom_MapperIRQ, unrom_MapperDump },
  28. { 1 , "MMC1", mmc1_InitMapper, norom_MapperIRQ, mmc1_MapperDump },
  29. { 4 , "MMC3", mmc3_InitMapper, mmc3_MapperIRQ, mmc3_MapperDump },
  30. { 10, "MMC4", mmc4_InitMapper, norom_MapperIRQ, mmc4_MapperDump },
  31. { 65, "Irem H3001", iremh3001_InitMapper, iremh3001_MapperIRQ, iremh3001_MapperDump },
  32. { 100, "Floppy Disk System", NULL, norom_MapperIRQ, norom_MapperDump },
  33. /* EOL tag */
  34. { 0, NULL, NULL, NULL, NULL }
  35. };