mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-08 08:00:01 +01:00
translate_thumb: IsThumb16: Mask not required
This commit is contained in:
parent
72c87d11e4
commit
34cb465fc7
@ -31,7 +31,7 @@ enum class ThumbInstSize {
|
|||||||
};
|
};
|
||||||
|
|
||||||
bool IsThumb16(u16 first_part) {
|
bool IsThumb16(u16 first_part) {
|
||||||
return (first_part & 0xF800) < 0xE800;
|
return first_part < 0xE800;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool IsUnconditionalInstruction(bool is_thumb_16, u32 instruction) {
|
bool IsUnconditionalInstruction(bool is_thumb_16, u32 instruction) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user