fix(m68k): correct SR register read (#2161)

The SR register in the `CPUM68KState` struct does not contain the value
of the lower 5 flags. To compute them, we must OR the CCR values with
the SR register to get the true SR value.
This commit is contained in:
Amaan Qureshi
2025-04-12 23:03:08 -04:00
committed by GitHub
parent f0bdeb5a74
commit aa86641e16
7 changed files with 54 additions and 2 deletions

View File

@@ -20,3 +20,22 @@ fn test_move_to_sr() {
let sr = uc.reg_read(RegisterM68K::SR).unwrap();
assert_eq!(sr, 0x2700);
}
#[test]
fn test_sr_contains_flags() {
let code = [
0x76, 0xed, // moveq #-19, %d3
];
let mut uc = uc_common_setup(Arch::M68K, Mode::BIG_ENDIAN, None, &code, ());
uc.emu_start(CODE_START, CODE_START + code.len() as u64, 0, 0)
.unwrap();
let d3 = uc.reg_read(RegisterM68K::D3).unwrap();
assert_eq!(d3, 0xffffffed);
let sr = uc.reg_read(RegisterM68K::SR).unwrap();
let is_negative = sr & 0x8 == 0x8;
assert!(is_negative, "SR should contain negative flag");
}