yane 1.1.11

An N.E.S. emulator and emulation library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod common;
use yane::core::*;

#[test]
fn test_clocking() {
    rom_test!("./test_roms/mmc3_clocking.nes");
}
#[test]
fn test_details() {
    rom_test!("./test_roms/mmc3_details.nes");
}
#[test]
fn test_a12_clocking() {
    rom_test!("./test_roms/mmc3_a12_clocking.nes");
}