pinky

An NES emulator written in Rust

  • 所有者: koute/pinky
  • 平台:
  • 许可证: Apache License 2.0
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Build Status

Pinky

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

You can run it in your Web browser!

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), MMC1 (1), UxROM (2), AxROM (7) and UNROM 512 (30) mappers.
  • Can be compiled as a libretro core.
  • Can be compiled into WebAssembly.

There are still many things missing, including:

  • Most unofficial 6502 instructions.
  • 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.

主要指标

概览
名称与所有者koute/pinky
主编程语言Rust
编程语言Rust (语言数: 8)
平台
许可证Apache License 2.0
所有者活动
创建于2016-10-23 17:05:43
推送于2023-11-27 14:30:36
最后一次提交2023-11-27 14:30:02
发布数0
用户参与
星数791
关注者数24
派生数51
提交数82
已启用问题?
问题数13
打开的问题数7
拉请求数4
打开的拉请求数3
关闭的拉请求数0
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?