Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lluns/nesish
An NES emulator
https://github.com/lluns/nesish
c99 cplusplus-11 emulator nes
Last synced: 25 days ago
JSON representation
An NES emulator
- Host: GitHub
- URL: https://github.com/lluns/nesish
- Owner: llunS
- License: mit
- Created: 2022-02-05T13:11:49.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-12T07:38:19.000Z (12 months ago)
- Last Synced: 2024-10-12T16:22:08.894Z (25 days ago)
- Topics: c99, cplusplus-11, emulator, nes
- Language: C++
- Homepage: https://lluns.github.io/Nesish/
- Size: 3.45 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nesish
A work-in-progress NES emulator.
Any feedback is welcome.
## Table of Contents
- [Status](#status)
- [TODO](#todo)
- [Build From Source](#build-from-source)
- [Desktop](#desktop)
- [Web](#web)
- [Acknowledgments](#acknowledgments)## Status
- Windows, MacOS and [Web](https://lluns.github.io/Nesish/)
- Mapper 0 games (Donkey Kong, Super Mario Bros. and Galaga were tested)
- Custom key mapping
- Sufficiently tested CPU, PPU and APU
- PPU Viewer
- C API for emulator core## TODO
- Performance and audio quality
- More mappers
- Debug tools
- etc.## Build From Source
> For stability, use tagged revision.
### Desktop
Prerequisites:
- C++11 compiler and C compiler
- CMake
- vcpkgExample:
```bash
# configure and generate
cmake -S shell -B build -DCMAKE_TOOLCHAIN_FILE=[path to vcpkg]/scripts/buildsystems/vcpkg.cmake -GNinja -DCMAKE_BUILD_TYPE=Release
# build
cmake --build build
```### Web
Prerequisites:
- [emsdk](https://github.com/emscripten-core/emsdk)
- CMake
- NinjaExample:
```bash
# configure and generate
cmake -S shell -B build -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=$EMSDK/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake
# build
cmake --build build
```## Acknowledgments
Sincere thanks to the NesDev community (including and not limited to the great Wiki and the Discord server), wouldn't have made it without your generous help.