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.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

11 satır
155B

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