mappers_list.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Mapper list - The peTI-NESulator Project
  3. * mappers_list.h
  4. *
  5. * Created by Manoel TRAPIER on 25/10/07.
  6. * Copyright (c) 2003-2018 986-Studio. 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/unrom512.h"
  20. #include "mappers/iremh3001.h"
  21. #include "mappers/mmc1.h"
  22. #include "mappers/mmc3.h"
  23. #include "mappers/mmc4.h"
  24. Mapper Mappers[] = {
  25. { 0 , "No Mapper", norom_InitMapper, norom_MapperIRQ, norom_MapperDump },
  26. { 7 , "AOROM", aorom_InitMapper, norom_MapperIRQ, aorom_MapperDump },
  27. { 2 , "CNROM", cnrom_InitMapper, norom_MapperIRQ, cnrom_MapperDump },
  28. { 3 , "UNROM", unrom_InitMapper, norom_MapperIRQ, unrom_MapperDump },
  29. { 1 , "MMC1", mmc1_InitMapper, norom_MapperIRQ, mmc1_MapperDump },
  30. { 4 , "MMC3", mmc3_InitMapper, mmc3_MapperIRQ, mmc3_MapperDump },
  31. { 10, "MMC4", mmc4_InitMapper, norom_MapperIRQ, mmc4_MapperDump },
  32. { 30, "UNROM512", unrom512_InitMapper, norom_MapperIRQ, unrom512_MapperDump },
  33. { 65, "Irem H3001", iremh3001_InitMapper, iremh3001_MapperIRQ, iremh3001_MapperDump },
  34. { 100, "Floppy Disk System", NULL, norom_MapperIRQ, norom_MapperDump },
  35. /* EOL tag */
  36. { 0, NULL, NULL, NULL, NULL }
  37. };