An NES emulator written in Rust
Go to file
2016-11-01 16:43:06 +01:00
emumisc Add copy_bits_from() to BitExtra. 2016-11-01 14:18:37 +01:00
mos6502 Initial commit 2016-10-23 19:50:32 +02:00
nes Add a generic mapper; simplify ROM loading and mappers. 2016-11-01 16:43:06 +01:00
nes-testsuite Enable holy_diver_batman/M1_P128K_C128K_W8K test ROM. 2016-11-01 14:46:48 +01:00
pinky-devui Do not use hard_reset() for now since it doesn't reset the mapper. 2016-11-01 14:45:10 +01:00
pinky-libretro Switch pinky-libretro crate type to cdylib 2016-10-24 20:33:37 +02:00
rp2c02-testsuite Add new vram_access_after_scrolling PPU test. 2016-11-01 14:33:22 +01:00
.gitignore Add a new PPU testsuite based on a transistor level simulation of RP2C02. 2016-10-30 00:16:54 +02:00
.gitmodules Add a new PPU testsuite based on a transistor level simulation of RP2C02. 2016-10-30 00:16:54 +02:00
.travis.yml Run tests in emumisc on Travis too. 2016-11-01 14:20:49 +01:00
LICENSE-APACHE.txt Initial commit 2016-10-23 19:50:32 +02:00
LICENSE-MIT.txt Initial commit 2016-10-23 19:50:32 +02:00
README.md Update README: better getting started instructions. 2016-10-30 19:35:07 +01:00

Build Status

Pinky

Pinky is an NES emulator written in Rust completely from scratch based only on publicly available documentation.

Features

  • Accurate-ish (cycle accurate) 6502, PPU and APU emulation.
  • A testsuite based on test ROMs.
  • A PPU testsuite automatically generated from a transistor-level simulation of a real PPU.
  • Supports NROM (0) and MMC1 (1) mappers.
  • Can be compiled as a libretro core.

There are still many things missing, including:

  • Unofficial 6502 instructions support.
  • Support for other mappers.
  • Accurate PPU sprite overflow.
  • Savestate support.
  • PAL support.

Currently this is not a production quality emulator, though whatever games it can play (due to limited mapper support) it can play quite well (e.g. such games as Super Mario Brothers, Donkey Kong or Tetris; you can check out nesmapper.txt which will tell you which game use which mapper).

Getting started

Internally this project is split into multiple crates.

The pinky-libretro contains the libretro core of this emulator, which is the intended way to run it. It should be compatible with any libretro frontend, but it was only tested with RetroArch.

To compile the libretro core go into the pinky-libretro directory and type:

cargo build

This should build a shared object in target/debug called libpinky_libretro.so (on non-Linux systems the extension might be different, e.g. on Windows it'll be a .dll) which then you can use with RetroArch like this:

retroarch -L libpinky_libretro.so your_rom.nes

You can also run cargo build --release to build a significantly better optimized version (the debug build should run full speed on modern systems though).

There's also a simple standalone SDL2-based frontend in the pinky-devui directory; running it is just a matter of passing it a path to your game ROM on the command line.

The nes-testsuite contains an emulator agnostic testsuite of NES roms, which could be easily hooked to any other emulator simply by implementing a single trait (see nes/src/testsuite.rs).

The rp2c02-testsuite contains a PPU testsuite which is autogenerated with the help of Visual2C02, which is a transistor-level simulator of an actual NES PPU.

The nes contains the emulator itself. mos6502 has the 6502 interpreter, which could be useful for emulating other 6502-based machines.

There are already hundreds of NES emulators out there; why another?

Because why not? Writing a game console emulator is one of the most fun and rewarding projects out there, and nothing can compare with the feeling of beating one of your favorite games on an emulator you've wrote yourself.

The choice of NES is also an obvious one - it's the least time consuming console to emulate simply due to the fact that it's extremely well documented.