mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-10 09:13:58 -09:00
SuperH: correct rotr instruction
This commit is contained in:
@@ -1544,7 +1544,7 @@ MovMUReg2: MovMUReg2_15 is MovMUReg2_15 {
|
||||
{
|
||||
$(T_FLAG) = ((rn_08_11 & 0x1) != 0);
|
||||
|
||||
rn_08_11 = (rn_08_11 >> 1) | sext($(T_FLAG));
|
||||
rn_08_11 = (rn_08_11 >> 1) | (rn_08_11 << 31);
|
||||
}
|
||||
|
||||
@if SH_VERSION == "2A"
|
||||
|
||||
Reference in New Issue
Block a user