mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 10:18:40 +12:00
SPU Debugger: Implement float registers view + General debugger fixes (#9265)
* SPU Debugger: Fix try_get_insert_mask_info * Debugger: Always update thread state on context's data change No longer needing to press on thread's instructions for actions to work!
This commit is contained in:
parent
dfae7bd073
commit
b1710bb712
7 changed files with 67 additions and 22 deletions
|
@ -218,6 +218,12 @@ typename SPUDisAsm::insert_mask_info SPUDisAsm::try_get_insert_mask_info(v128 ma
|
|||
return {};
|
||||
}
|
||||
|
||||
if (size == 16)
|
||||
{
|
||||
// 0x0, 0x1, 0x2, .. 0xE, 0xF is not allowed
|
||||
return {};
|
||||
}
|
||||
|
||||
// [type size, dst index, src index]
|
||||
return {size, first / size, src_first / size};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue