mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 15:40:00 +01:00
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