Including more test roms and initializing the registers

This commit is contained in:
2021-10-15 19:49:36 -05:00
parent f9d5cfaa02
commit 9d8d05c660
14 changed files with 25 additions and 14 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ pub struct Bus {
impl Bus {
pub fn new() -> Self {
let game_rom = match ROM::load_file("roms/cpu_instrs.gb".to_string()) {
let game_rom = match ROM::load_file("roms/cpu_instrs_individual/01-special.gb".to_string()) {
Ok(rom) => rom,
_ => ROM::from_bytes(&[0; 0xFFFF])
};