NESe (pronounced "Nessie") is a NES emulator based on the e6502 emulator, also written in C with a focus on speed and portability for use on embedded platforms, especially ARM.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
111B

  1. #include "mapper.h"
  2. extern const nes_Mapper map000;
  3. const nes_Mapper* nes_mappers[256] = {
  4. &map000,
  5. };