Fix the undefined shift

This commit is contained in:
2022-02-12 19:37:32 +01:00
parent e548cd9eb1
commit e38b1c8af3
2 changed files with 2 additions and 2 deletions

View File

@@ -37,7 +37,7 @@
#define MIPS_DEBUG_DISAS 0
/* MIPS major opcodes */
#define MASK_OP_MAJOR(op) (op & (0x3FL << 26))
#define MASK_OP_MAJOR(op) (op & (0x3FUL << 26))
enum {
/* indirect opcode tables */