adds more test roms

adds list of test roms and ability to load as desired
passes the Corax+ opcode test now
This commit is contained in:
2024-10-09 09:44:51 -04:00
parent 6fe644ef46
commit 067164c657
12 changed files with 273 additions and 237 deletions
+11
View File
@@ -0,0 +1,11 @@
use emmaemu::chip8::computer::Chip8Computer;
#[test]
fn smoke() { assert!(true) }
#[test]
fn test_rom_1_works() {
let mut x = Chip8Computer::new();
}