tests: load_region asserts that all data must be copied

This commit is contained in:
John 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 @@ use std::{
/// # use chirp::*;
/// let mut bus = bus! {
/// Stack [0x0000..0x0800] = b"ABCDEF",
/// Program [0x0800..0x1000] = include_bytes!("bus.rs"),
/// Program [0x0800..0xf000] = include_bytes!("bus.rs"),
/// };
/// ```
#[macro_export]

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",
},
)
}