Skip to content

Commit 81b1319

Browse files
committed
glvs-core: use nestest.nes for integration test and check it in.
1 parent 70aa8fc commit 81b1319

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

glvs-core/tests/integration.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ use std::fs;
33
use glvs_core::{Cpu, NesBus};
44

55
#[test]
6-
fn load_donkey_kong() {
7-
let f = fs::read("../resources/dk.nes").unwrap();
6+
fn load_rom() {
7+
let f = fs::read("./tests/nestest.nes").unwrap();
88
let mut bus = NesBus::new(f.into_boxed_slice()).unwrap();
99
let _cpu = Cpu::new(&mut bus);
1010
}

glvs-core/tests/nestest.nes

24 KB
Binary file not shown.

0 commit comments

Comments
 (0)