nes_rust 0.1.2

NES emulator written in Rust
Documentation
  • Coverage
  • 6.33%
    15 out of 237 items documented0 out of 176 items with examples
  • Size
  • Source code size: 170.73 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 9.89 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • takahirox/nes-rust
    217 26 39
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • takahirox

nes-rust

Build Status Crate npm version

nes-rust is a NES emulator written in Rust. It can be compiled to WebAssembly.

Online Demos / Videos

Screenshots

nestest

nestest

Sgt. Helmet Training Day

Sgt. Helmet Training Day

Features

  • Audio support with SDL2 / WebAudio
  • WebAssembly support
  • Remote multiplay support with WebRTC

How to import into your Rust project

The emulator module and document are released at crates.io.

How to build core library locally

$ git clone https://github.com/takahirox/nes-rust.git
$ cd nes-rust
$ cargo build --release

How to run as desktop application

Prerequirements

$ cd nes-rust/cli
$ cargo run --release path_to_rom_file

How to import and use WebAssembly NES emulator in a web browser

See wasm/web

How to install and use WebAssembly NES emulator npm package

See wasm/npm