mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-07-30 07:18:37 -09:00
Fix sev.w arm encoding.
Unlike the other hints, sev.w op0 missed the 0x in the beginning which led to incorrect parsing. The encoding should be 0xf3af8004 (https://developer.arm.com/documentation/ddi0403/latest/, sev encoding T2).
This commit is contained in:
@@ -4358,7 +4358,7 @@ thumbEndianNess: "BE" is op0=0xb658 { export 1:1; }
|
||||
build ItCond;
|
||||
}
|
||||
|
||||
:sev^ItCond^".w" is TMode=1 & ItCond & op0=0xf3af; op0=8004
|
||||
:sev^ItCond^".w" is TMode=1 & ItCond & op0=0xf3af; op0=0x8004
|
||||
{
|
||||
build ItCond;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user