Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markmccaskey/nerust
NES emulator
https://github.com/markmccaskey/nerust
emulator nes nes-emulator
Last synced: 20 days ago
JSON representation
NES emulator
- Host: GitHub
- URL: https://github.com/markmccaskey/nerust
- Owner: MarkMcCaskey
- Created: 2017-06-09T04:04:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-23T22:29:40.000Z (about 4 years ago)
- Last Synced: 2024-11-30T21:30:01.242Z (26 days ago)
- Topics: emulator, nes, nes-emulator
- Language: Rust
- Homepage:
- Size: 179 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NEruSt
![Test](https://github.com/MarkMcCaskey/NEruSt/workflows/Test/badge.svg?branch=master)NES emulator. Back from the dead! (for real this time)
High level TODO list:
- [ ] Come up with a better name!
- [x] CPU emulation!
- [x] Emulate 1 type of cartridge!
- [ ] Draw something!
- [ ] Play some sound!
- [x] Handle some input!
- [x] Wasm support
- [ ] Make the emulator nice to use once it's working (i.e. configuration, Wasm support, GUI).## Development
For development, consider using [cargo-web](https://github.com/koute/cargo-web).
You can install it with
```sh
cargo install cargo-web
```Then set it up to watch the project and automatically rebuild it
```sh
cargo web start
```then go to http://localhost:8000 to interact with it.
## Running
To run with Wasm, run:
```sh
# Build the Rust Wasm
cargo build --release --target=wasm32-unknown-unknown# Run a server to serve the html, js, and Wasm
python -m SimpleHTTPServer 8000
```then go to http://localhost:8000/static/index.html to use it!