mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
584 B
18 lines
584 B
#ifndef _Miphst_c_h
|
|
#define _Miphst_c_h
|
|
#define MipBranchCodeSizeAdjustment (2)
|
|
#define MipCallCodeSize (1)
|
|
#define MipDelaySlotSize (1)
|
|
#define MipPureAddressAdjustment (-4)
|
|
#define MipCallToRetAddrAdjustment (0)
|
|
#define MipMaxImmedSize (2)
|
|
#define MipFpuOverflowExceptionBit (4)
|
|
#define MipFpuUnderflowExceptionBit (3)
|
|
#define MipFpuPrecisionExceptionBit (2)
|
|
#define LOW_16_BITS_MASK (65535)
|
|
#define MIPS_JAL_INST (201326592)
|
|
#define MIPS_NOP_INST (37)
|
|
#define MIP_LUI_INST (1006632960)
|
|
#define MIP_ORI_INST (872415232)
|
|
#define MIP_ADDIU_INST (603979776)
|
|
#endif /* ! _Miphst_c_h */
|