mirror of
https://github.com/azahar-emu/dynarmic.git
synced 2026-04-04 20:45:59 +02:00
translate_thumb: IsThumb16: Mask not required
This commit is contained in:
@@ -31,7 +31,7 @@ enum class ThumbInstSize {
|
||||
};
|
||||
|
||||
bool IsThumb16(u16 first_part) {
|
||||
return (first_part & 0xF800) < 0xE800;
|
||||
return first_part < 0xE800;
|
||||
}
|
||||
|
||||
bool IsUnconditionalInstruction(bool is_thumb_16, u32 instruction) {
|
||||
|
||||
Reference in New Issue
Block a user