mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 10:55:34 +00:00
Mips undefined shift fix
Backports commit 46999575fb9e82ccd925e835d0d7db47200e010d from unicorn
This commit is contained in:
parent
e3b8ea18bf
commit
2c9b6df879
|
@ -38,7 +38,7 @@
|
||||||
#define MIPS_DEBUG_DISAS 0
|
#define MIPS_DEBUG_DISAS 0
|
||||||
|
|
||||||
/* MIPS major opcodes */
|
/* MIPS major opcodes */
|
||||||
#define MASK_OP_MAJOR(op) (op & (0x3F << 26))
|
#define MASK_OP_MAJOR(op) (op & (((uint32_t)0x3F) << 26))
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
/* indirect opcode tables */
|
/* indirect opcode tables */
|
||||||
|
|
Loading…
Reference in a new issue