0xF8 instruction

This commit is contained in:
2021-10-19 11:04:52 -05:00
parent 76684cd523
commit f928207a8d
3 changed files with 21 additions and 7 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_individual/01-special.gb".to_string()) {
let game_rom = match ROM::load_file("roms/cpu_instrs_individual/02-interrupts.gb".to_string()) {
Ok(rom) => rom,
_ => ROM::from_bytes(&[0; 0xFFFF])
};