Home
last modified time | relevance | path

Searched refs:MIPS_OPCODE_COP0 (Results 1 – 1 of 1) sorted by relevance

/toolchain/binutils/binutils-2.27/gas/config/
Ditbl-mips.h31 #define MIPS_OPCODE_COP0 (0x21) /* COPz+CO, bits 31-25: 0100zz1 */ macro
32 #define MIPS_ENCODE_COP_NUM(z) ((MIPS_OPCODE_COP0|z<<1)<<25)
33 #define MIPS_IS_COP_INSN(insn) ((MIPS_OPCODE_COP0&(insn>>25)) \
34 == MIPS_OPCODE_COP0)
35 #define MIPS_DECODE_COP_NUM(insn) ((~MIPS_OPCODE_COP0&(insn>>25))>>1)