tests: load_region asserts that all data must be copied

This commit is contained in:
2023-04-17 05:26:49 -05:00
parent 1573e00928
commit 381b2a69bd
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ fn setup_environment() -> (CPU, Bus) {
// Load the ROM file into RAM
Program [0x0200..0x1000],
// Create a screen, and fill it with garbage
Screen [0x0F00..0x1000] = include_bytes!("chip8_test_suite.rs"),
Screen [0x0F00..0x1000] = b"jsuadhgufywegrwsdyfogbbg4owgbrt",
},
)
}