A32/translate_thumb: Correct IsThumb16
This commit is contained in:
parent
7e5ae6076a
commit
1c5f6882f0
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue