rs-nes
A work-in-progress NES emulator written in Rust
File Explorer
Download Latest Version (.zip)- mod.rs
- am_test_utils.rs
- arithmetic_instr_spec_tests.rs
- bitwise_and_shift_instr_spec_tests.rs
- branch_spec_tests.rs
- compare_spec_tests.rs
- flag_instr_spec_tests.rs
- inc_dec_spec_tests.rs
- jump_and_returns_instr_spec_tests.rs
- loads_and_stores_spec_tests.rs
- mod.rs
- reg_transfer_spec_tests.rs
- mod.rs
- spec_tests.rs
- functional_tests.rs
- length_and_timing_tests.rs
- mod.rs
- spec_tests.rs
- test_fixture.rs
- lib.rs
- Cargo.toml
- README.md
- render_benchmark.rs
- mocks.rs
- mod.rs
- main.rs
- mocks.rs
- mod.rs
- nrom128.rs
- nrom256.rs
- uxrom.rs
- mocks.rs
- mod.rs
- mod.rs
- spec_tests.rs
- mod.rs
- spec_tests.rs
- mod.rs
- spec_tests.rs
- mod.rs
- spec_tests.rs
- mod.rs
- spec_tests.rs
- mocks.rs
- mod.rs
- spec_tests.rs
- mod.rs
- spec_tests.rs
- mocks.rs
- mod.rs
- spec_tests.rs
- mod.rs
- spec_tests.rs
- mocks.rs
- mod.rs
- spec_tests.rs
- mod.rs
- lib.rs
- Cargo.toml
- lib.rs
- Cargo.toml
- README.md
- lib.rs
- .gitignore
- Cargo.toml
- index.html
- index.js
- package-lock.json
- package.json
- webpack.config.js
- 6502_functional_test.bin
- 6502_functional_test.lst
- 6502_interrupt_test.bin
- 6502_interrupt_test.lst
- lawn_mower.nes
- .gitignore
- .rustfmt.toml
- .travis.yml
- Cargo.lock
- Cargo.toml
- LICENSE
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/bgourlie/rs-nes
Downloads the entire project code from GitHub to your computer.
cd rs-nes
Moves into the project folder you just downloaded.
2. Node.js
Easy RecommendedPrerequisites
cd rs-nes-web
This project's files live in a subfolder, so move into it first.
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
3. Rust
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo run --bin native_client --release --features="native_client" -- path/to/rom.nes
Builds and then immediately runs the program.
If cargo build finishes without errors, it worked. The executable is created under target/.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
