A32/translate_thumb: Correct IsThumb16
This commit is contained in:
parent
7e5ae6076a
commit
1c5f6882f0
@ -25,7 +25,7 @@ enum class ThumbInstSize {
|
||||
};
|
||||
|
||||
bool IsThumb16(u16 first_part) {
|
||||
return (first_part & 0xF800) <= 0xE800;
|
||||
return (first_part & 0xF800) < 0xE800;
|
||||
}
|
||||
|
||||
std::tuple<u32, ThumbInstSize> ReadThumbInstruction(u32 arm_pc, MemoryReadCodeFuncType memory_read_code) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user