tests: complete disassembler tests

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2023-09-17 09:50:32 +05:30
parent be7deb349a
commit dd9dd5f116
17 changed files with 389 additions and 90 deletions

View File

@@ -58,7 +58,7 @@ Memory::read(size_t address) const {
return rom[address - ROM_2_START];
} else {
log_error("Invalid memory region accessed");
return 0;
return 0xFF;
}
}