mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-11 12:05:36 +00:00
target/mips: Define a bit for MXU in insn_flags
Define a bit for MXU in insn_flags. This is the first non-MIPS (third party) ASE supported in QEMU for MIPS, so it is placed in the section "bits 56-63: vendor-specific ASEs". Backports commit a031ac61619294ae473a78d1834e757fad8b59e5 from qemu
This commit is contained in:
parent
58dc377890
commit
8429d98b40
|
@ -65,6 +65,7 @@
|
|||
* bits 56-63: vendor-specific ASEs
|
||||
*/
|
||||
#define ASE_MMI 0x0100000000000000ULL
|
||||
#define ASE_MXU 0x0200000000000000ULL
|
||||
|
||||
/* MIPS CPU defines. */
|
||||
#define CPU_MIPS1 (ISA_MIPS1)
|
||||
|
|
Loading…
Reference in a new issue