mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-08 07:28:09 +01:00
translate_thumb: IsThumb16: Mask not required
This commit is contained in:
parent
72c87d11e4
commit
34cb465fc7
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue