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:
p-mikeg
2026-07-14 00:53:15 +03:00
committed by Ryan Kurtz
parent 87d10fc6ee
commit f18269b0eb

View File

@@ -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;
}