mirror of
https://github.com/dingusdev/dingusppc.git
synced 2024-12-25 18:29:49 +00:00
poweropcodes: Fix srlq.
Test bit 26 of rB instead of testing for >= 0x20 to determine which operation to perform.
This commit is contained in:
parent
bce816139b
commit
916cb47b9d
@ -642,10 +642,9 @@ void dppc_interpreter::power_srlq() {
|
|||||||
uint32_t r = (ppc_result_d >> rot_sh) | (ppc_result_d << (32 - rot_sh));
|
uint32_t r = (ppc_result_d >> rot_sh) | (ppc_result_d << (32 - rot_sh));
|
||||||
unsigned mask = power_rot_mask(rot_sh, 31);
|
unsigned mask = power_rot_mask(rot_sh, 31);
|
||||||
|
|
||||||
if (ppc_result_b >= 0x20) {
|
if (ppc_result_b & 0x20) {
|
||||||
ppc_result_a = (ppc_state.spr[SPR::MQ] & mask);
|
ppc_result_a = (ppc_state.spr[SPR::MQ] & mask);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
ppc_result_a = ((r & mask) | (ppc_state.spr[SPR::MQ] & ~mask));
|
ppc_result_a = ((r & mask) | (ppc_state.spr[SPR::MQ] & ~mask));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user