tests: Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience.

This commit is contained in:
2023-03-28 08:57:24 -05:00
parent f2f47e13d4
commit 83c178413d
4 changed files with 193 additions and 10 deletions

View File

@@ -171,7 +171,7 @@ impl Disassemble {
0x65 => self.dma_load(x),
_ => self.unimplemented(opcode),
},
_ => unimplemented!("Extracted nibble from byte, got >nibble?"),
_ => unreachable!("Extracted nibble from byte, got >nibble?"),
}
}
}