All Projects â†’ spieglt â†’ Nestur

spieglt / Nestur

The NES (emulator) you left outside in the rain but let dry and still kind of works

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Nestur

Anese
Another NES Emulator - written for fun & learning - first implementation of wideNES
Stars: ✭ 323 (-36.04%)
Mutual labels:  nes, sdl2, emulator
pac-man-emulator
🕹 An emulator for the Pac-Man arcade machine (Zilog Z80 CPU) for Win/Mac/*nix and Xbox One.
Stars: ✭ 20 (-96.04%)
Mutual labels:  emulator, sdl2
SaltyNES
A NES emulator in WebAssembly
Stars: ✭ 69 (-86.34%)
Mutual labels:  emulator, nes
Provenance
iOS & tvOS multi-emulator frontend, supporting various Atari, Bandai, NEC, Nintendo, Sega, SNK and Sony console systems… Get Started: https://wiki.provenance-emu.com |
Stars: ✭ 4,732 (+837.03%)
Mutual labels:  nes, emulator
awesome-emu-resources
A curated list of emulator development resources
Stars: ✭ 26 (-94.85%)
Mutual labels:  emulator, nes
helios
A Java-based Sega Mega Drive/Genesis emulator. And other systems too.
Stars: ✭ 14 (-97.23%)
Mutual labels:  emulator, nes
Jsnes Web
A browser UI for JSNES, a JavaScript NES emulator
Stars: ✭ 398 (-21.19%)
Mutual labels:  nes, emulator
react-nes
React UI for https://github.com/fredericcambon/nes
Stars: ✭ 16 (-96.83%)
Mutual labels:  emulator, nes
gameboyGO
Gameboy emulator in go
Stars: ✭ 24 (-95.25%)
Mutual labels:  emulator, sdl2
speljongen
gameboy emulator written in c++
Stars: ✭ 15 (-97.03%)
Mutual labels:  emulator, sdl2
Ktnes
A multiplatform NES emulator written in Kotlin
Stars: ✭ 257 (-49.11%)
Mutual labels:  nes, emulator
nestation
A NES Emulator frontend with Net Play!
Stars: ✭ 33 (-93.47%)
Mutual labels:  emulator, nes
Gearnes
NES / Famicom emulator for iOS, Mac, Raspberry Pi, Windows, Linux and RetroArch.
Stars: ✭ 23 (-95.45%)
Mutual labels:  emulator, nes
Dosbox Staging
DOS/x86 emulator focusing on ease of use
Stars: ✭ 412 (-18.42%)
Mutual labels:  sdl2, emulator
nes-rust
NES emulator in Rust with GUI
Stars: ✭ 78 (-84.55%)
Mutual labels:  emulator, nes
first nes
Create your own games for the Nintendo Entertainment System! This "starter" game is easily extensible for your own projects. Includes references.
Stars: ✭ 94 (-81.39%)
Mutual labels:  emulator, nes
SwiftNES
Cross-platform NES Emulator written in Swift
Stars: ✭ 29 (-94.26%)
Mutual labels:  sdl2, nes
js-nes-emulator
NES emulator in javascript.
Stars: ✭ 12 (-97.62%)
Mutual labels:  emulator, nes
NostalgiaLite
Three game emulators: FC(Nes), GG, GBC for Android
Stars: ✭ 85 (-83.17%)
Mutual labels:  emulator, nes
Hnes
🎮 NES Emulator written in Haskell
Stars: ✭ 340 (-32.67%)
Mutual labels:  nes, emulator

nestur

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.

  • no use of unsafe
  • NTSC timing
  • supports mappers 0-4 which cover ~85% of games

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.

Controls

 Button  |   Key
___________________
|   A    |    D   |
|   B    |    F   |
| Start  |  Enter |
| Select | R-Shift|
|   Up   |   Up   |
|  Down  |  Down  |
|  Left  |  Left  |
|  Right |  Right |
-------------------

F2: reset console
F5: save game state
F9: load most recent save state

If the game is called mygame.nes, the save state files will be called mygame-#.dat. To load any previous save state, drag and drop a .dat file onto the window.

Use

Double-click or run the executable from a terminal by itself to launch with instructions. Then click Ok and drag a (iNES/.nes) ROM file onto the window. Or, drag and drop a ROM file onto the executable to run it directly, or use the path to the ROM file as the first argument to the terminal command.

If the game uses battery-backed RAM (if it can save data when the console is 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.

Compilation

  1. Install Rust
  2. Have a C compiler
  3. Install CMake
    • Linux: sudo apt install cmake
    • Mac: install Homebrew and run brew install cmake
    • Windows
  4. cd nestur/ && cargo build --release (be sure to build/run with the release flag or it will run very slowly)
  5. The nestur executable or nestur.exe will be in nestur/target/release.

To do

  • support other controllers?

  • more mappers?

  • better save file organization?

Known problem games

  • None currently, please report any issues

Please also check out Cloaker and Flying Carpet!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].