Nestur is an NES emulator. There are plenty of full-featured emulators out there; this is primarily an educational project but it is usable. There may still be many bugs, but I'm probably not aware of them so please submit issues.
- SDL2 is the only dependency
- no use of
unsafe
- NTSC timing
- supports mappers 0-4 which cover ~85% of games
Button | Key
___________________
| A | D |
| B | F |
| Start | Enter |
| Select | R-Shift|
| Up | Up |
| Down | Down |
| Left | Left |
| Right | Right |
-------------------
The code aims to follow the explanations from the NES dev wiki where possible, especially in the PPU, and the comments quote from it often. Thanks to everyone who contributes to that wiki/forum, and to Michael Fogleman's NES and Scott Ferguson's Fergulator for getting me unstuck at several points.
- Install Rust
- Configure SDL2 for your platform:
- Windows: Have Visual Studio installed including the "Desktop development with C++" workload. Then follow the instructions here (skipping step 4 as
SDL2.dll
is already in the repo): https://github.com/Rust-SDL2/rust-sdl2#windows-msvc. - macOS: Install Homebrew and run
brew install sdl2
- Linux:
sudo apt-get install libsdl2-dev
(or whatever your package manager is)
- Windows: Have Visual Studio installed including the "Desktop development with C++" workload. Then follow the instructions here (skipping step 4 as
cd nestur/ && cargo build --release
(be sure to build/run with the release flag or it will run very slowly)- The
nestur
executable ornestur.exe
will be innestur/target/release
. - Run with
$ ./nestur path/to/rom_filename.nes
or> nestur.exe path\to\rom_filename.nes
. - If the game uses battery-backed RAM (if it can save data when turned off), a save file like
rom_filename.sav
will be created in the same folder as the ROM when the program is exited. When Nestur is run again, it will look for a file matching the ROM name, with a.sav
extension instead of.nes
.
-
DMC audio channel, high- and low-pass filters
-
Better GUI and distributable solution
-
Save states
-
Player 2 controller?
- None currently, please report any issues
Please also check out Cloaker and Flying Carpet!