runes 0.2.5

No-std NES emulator library and minimal emulator written purely in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
#![no_std]
pub mod memory;
pub mod utils;
#[macro_use]
pub mod mos6502;
pub mod apu;
pub mod cartridge;
pub mod controller;
pub mod mapper;
pub mod ppu;