mappers_list.h 479 B

1234567891011121314151617181920
  1. /*
  2. * mappers_list.h
  3. * TI-NESulator.X
  4. *
  5. * Created by Manoël Trapier on 25/10/07.
  6. * Copyright 2007 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/mmc1.h"
  12. Mapper Mappers[] = {
  13. { 0, "No Mapper", norom_InitMapper, norom_MapperIRQ, norom_MapperDump },
  14. { 1, "MMC1", mmc1_InitMapper, norom_MapperIRQ, mmc1_MapperDump },
  15. /* EOL tag */
  16. { 0, NULL, NULL, NULL, NULL }
  17. };