📄 ppc-opc.c
字号:
/* An VX form instruction. */#define VX(op, xop) (OP (op) | (((unsigned long)(xop)) & 0x7ff))/* The mask for an VX form instruction. */#define VX_MASK VX(0x3f, 0x7ff)/* An VA form instruction. */#define VXA(op, xop) (OP (op) | (((unsigned long)(xop)) & 0x03f))/* The mask for an VA form instruction. */#define VXA_MASK VXA(0x3f, 0x3f)/* An VXR form instruction. */#define VXR(op, xop, rc) (OP (op) | (((rc) & 1) << 10) | (((unsigned long)(xop)) & 0x3ff))/* The mask for a VXR form instruction. */#define VXR_MASK VXR(0x3f, 0x3ff, 1)/* An X form instruction. */#define X(op, xop) (OP (op) | ((((unsigned long)(xop)) & 0x3ff) << 1))/* A Z form instruction. */#define Z(op, xop) (OP (op) | ((((unsigned long)(xop)) & 0x1ff) << 1))/* An X form instruction with the RC bit specified. */#define XRC(op, xop, rc) (X ((op), (xop)) | ((rc) & 1))/* A Z form instruction with the RC bit specified. */#define ZRC(op, xop, rc) (Z ((op), (xop)) | ((rc) & 1))/* The mask for an X form instruction. */#define X_MASK XRC (0x3f, 0x3ff, 1)/* The mask for a Z form instruction. */#define Z_MASK ZRC (0x3f, 0x1ff, 1)/* An X_MASK with the RA field fixed. */#define XRA_MASK (X_MASK | RA_MASK)/* An X_MASK with the RB field fixed. */#define XRB_MASK (X_MASK | RB_MASK)/* An X_MASK with the RT field fixed. */#define XRT_MASK (X_MASK | RT_MASK)/* An XRT_MASK mask with the L bits clear. */#define XLRT_MASK (XRT_MASK & ~((unsigned long) 0x3 << 21))/* An X_MASK with the RA and RB fields fixed. */#define XRARB_MASK (X_MASK | RA_MASK | RB_MASK)/* An XRARB_MASK, but with the L bit clear. */#define XRLARB_MASK (XRARB_MASK & ~((unsigned long) 1 << 16))/* An X_MASK with the RT and RA fields fixed. */#define XRTRA_MASK (X_MASK | RT_MASK | RA_MASK)/* An XRTRA_MASK, but with L bit clear. */#define XRTLRA_MASK (XRTRA_MASK & ~((unsigned long) 1 << 21))/* An X form instruction with the L bit specified. */#define XOPL(op, xop, l) (X ((op), (xop)) | ((((unsigned long)(l)) & 1) << 21))/* The mask for an X form comparison instruction. */#define XCMP_MASK (X_MASK | (((unsigned long)1) << 22))/* The mask for an X form comparison instruction with the L field fixed. */#define XCMPL_MASK (XCMP_MASK | (((unsigned long)1) << 21))/* An X form trap instruction with the TO field specified. */#define XTO(op, xop, to) (X ((op), (xop)) | ((((unsigned long)(to)) & 0x1f) << 21))#define XTO_MASK (X_MASK | TO_MASK)/* An X form tlb instruction with the SH field specified. */#define XTLB(op, xop, sh) (X ((op), (xop)) | ((((unsigned long)(sh)) & 0x1f) << 11))#define XTLB_MASK (X_MASK | SH_MASK)/* An X form sync instruction. */#define XSYNC(op, xop, l) (X ((op), (xop)) | ((((unsigned long)(l)) & 3) << 21))/* An X form sync instruction with everything filled in except the LS field. */#define XSYNC_MASK (0xff9fffff)/* An X_MASK, but with the EH bit clear. */#define XEH_MASK (X_MASK & ~((unsigned long )1))/* An X form AltiVec dss instruction. */#define XDSS(op, xop, a) (X ((op), (xop)) | ((((unsigned long)(a)) & 1) << 25))#define XDSS_MASK XDSS(0x3f, 0x3ff, 1)/* An XFL form instruction. */#define XFL(op, xop, rc) (OP (op) | ((((unsigned long)(xop)) & 0x3ff) << 1) | (((unsigned long)(rc)) & 1))#define XFL_MASK (XFL (0x3f, 0x3ff, 1) | (((unsigned long)1) << 25) | (((unsigned long)1) << 16))/* An X form isel instruction. */#define XISEL(op, xop) (OP (op) | ((((unsigned long)(xop)) & 0x1f) << 1))#define XISEL_MASK XISEL(0x3f, 0x1f)/* An XL form instruction with the LK field set to 0. */#define XL(op, xop) (OP (op) | ((((unsigned long)(xop)) & 0x3ff) << 1))/* An XL form instruction which uses the LK field. */#define XLLK(op, xop, lk) (XL ((op), (xop)) | ((lk) & 1))/* The mask for an XL form instruction. */#define XL_MASK XLLK (0x3f, 0x3ff, 1)/* An XL form instruction which explicitly sets the BO field. */#define XLO(op, bo, xop, lk) \ (XLLK ((op), (xop), (lk)) | ((((unsigned long)(bo)) & 0x1f) << 21))#define XLO_MASK (XL_MASK | BO_MASK)/* An XL form instruction which explicitly sets the y bit of the BO field. */#define XLYLK(op, xop, y, lk) (XLLK ((op), (xop), (lk)) | ((((unsigned long)(y)) & 1) << 21))#define XLYLK_MASK (XL_MASK | Y_MASK)/* An XL form instruction which sets the BO field and the condition bits of the BI field. */#define XLOCB(op, bo, cb, xop, lk) \ (XLO ((op), (bo), (xop), (lk)) | ((((unsigned long)(cb)) & 3) << 16))#define XLOCB_MASK XLOCB (0x3f, 0x1f, 0x3, 0x3ff, 1)/* An XL_MASK or XLYLK_MASK or XLOCB_MASK with the BB field fixed. */#define XLBB_MASK (XL_MASK | BB_MASK)#define XLYBB_MASK (XLYLK_MASK | BB_MASK)#define XLBOCBBB_MASK (XLOCB_MASK | BB_MASK)/* A mask for branch instructions using the BH field. */#define XLBH_MASK (XL_MASK | (0x1c << 11))/* An XL_MASK with the BO and BB fields fixed. */#define XLBOBB_MASK (XL_MASK | BO_MASK | BB_MASK)/* An XL_MASK with the BO, BI and BB fields fixed. */#define XLBOBIBB_MASK (XL_MASK | BO_MASK | BI_MASK | BB_MASK)/* An XO form instruction. */#define XO(op, xop, oe, rc) \ (OP (op) | ((((unsigned long)(xop)) & 0x1ff) << 1) | ((((unsigned long)(oe)) & 1) << 10) | (((unsigned long)(rc)) & 1))#define XO_MASK XO (0x3f, 0x1ff, 1, 1)/* An XO_MASK with the RB field fixed. */#define XORB_MASK (XO_MASK | RB_MASK)/* An XS form instruction. */#define XS(op, xop, rc) (OP (op) | ((((unsigned long)(xop)) & 0x1ff) << 2) | (((unsigned long)(rc)) & 1))#define XS_MASK XS (0x3f, 0x1ff, 1)/* A mask for the FXM version of an XFX form instruction. */#define XFXFXM_MASK (X_MASK | (1 << 11) | (1 << 20))/* An XFX form instruction with the FXM field filled in. */#define XFXM(op, xop, fxm, p4) \ (X ((op), (xop)) | ((((unsigned long)(fxm)) & 0xff) << 12) \ | ((unsigned long)(p4) << 20))/* An XFX form instruction with the SPR field filled in. */#define XSPR(op, xop, spr) \ (X ((op), (xop)) | ((((unsigned long)(spr)) & 0x1f) << 16) | ((((unsigned long)(spr)) & 0x3e0) << 6))#define XSPR_MASK (X_MASK | SPR_MASK)/* An XFX form instruction with the SPR field filled in except for the SPRBAT field. */#define XSPRBAT_MASK (XSPR_MASK &~ SPRBAT_MASK)/* An XFX form instruction with the SPR field filled in except for the SPRG field. */#define XSPRG_MASK (XSPR_MASK & ~(0x17 << 16))/* An X form instruction with everything filled in except the E field. */#define XE_MASK (0xffff7fff)/* An X form user context instruction. */#define XUC(op, xop) (OP (op) | (((unsigned long)(xop)) & 0x1f))#define XUC_MASK XUC(0x3f, 0x1f)/* The BO encodings used in extended conditional branch mnemonics. */#define BODNZF (0x0)#define BODNZFP (0x1)#define BODZF (0x2)#define BODZFP (0x3)#define BODNZT (0x8)#define BODNZTP (0x9)#define BODZT (0xa)#define BODZTP (0xb)#define BOF (0x4)#define BOFP (0x5)#define BOFM4 (0x6)#define BOFP4 (0x7)#define BOT (0xc)#define BOTP (0xd)#define BOTM4 (0xe)#define BOTP4 (0xf)#define BODNZ (0x10)#define BODNZP (0x11)#define BODZ (0x12)#define BODZP (0x13)#define BODNZM4 (0x18)#define BODNZP4 (0x19)#define BODZM4 (0x1a)#define BODZP4 (0x1b)#define BOU (0x14)/* The BI condition bit encodings used in extended conditional branch mnemonics. */#define CBLT (0)#define CBGT (1)#define CBEQ (2)#define CBSO (3)/* The TO encodings used in extended trap mnemonics. */#define TOLGT (0x1)#define TOLLT (0x2)#define TOEQ (0x4)#define TOLGE (0x5)#define TOLNL (0x5)#define TOLLE (0x6)#define TOLNG (0x6)#define TOGT (0x8)#define TOGE (0xc)#define TONL (0xc)#define TOLT (0x10)#define TOLE (0x14)#define TONG (0x14)#define TONE (0x18)#define TOU (0x1f)/* Smaller names for the flags so each entry in the opcodes table will fit on a single line. */#undef PPC#define PPC PPC_OPCODE_PPC#define PPCCOM PPC_OPCODE_PPC | PPC_OPCODE_COMMON#define NOPOWER4 PPC_OPCODE_NOPOWER4 | PPCCOM#define POWER4 PPC_OPCODE_POWER4#define POWER5 PPC_OPCODE_POWER5#define POWER6 PPC_OPCODE_POWER6#define CELL PPC_OPCODE_CELL#define PPC32 PPC_OPCODE_32 | PPC_OPCODE_PPC#define PPC64 PPC_OPCODE_64 | PPC_OPCODE_PPC#define PPC403 PPC_OPCODE_403#define PPC405 PPC403#define PPC440 PPC_OPCODE_440#define PPC750 PPC#define PPC860 PPC#define PPCVEC PPC_OPCODE_ALTIVEC#define POWER PPC_OPCODE_POWER#define POWER2 PPC_OPCODE_POWER | PPC_OPCODE_POWER2#define PPCPWR2 PPC_OPCODE_PPC | PPC_OPCODE_POWER | PPC_OPCODE_POWER2#define POWER32 PPC_OPCODE_POWER | PPC_OPCODE_32#define COM PPC_OPCODE_POWER | PPC_OPCODE_PPC | PPC_OPCODE_COMMON#define COM32 PPC_OPCODE_POWER | PPC_OPCODE_PPC | PPC_OPCODE_COMMON | PPC_OPCODE_32#define M601 PPC_OPCODE_POWER | PPC_OPCODE_601#define PWRCOM PPC_OPCODE_POWER | PPC_OPCODE_601 | PPC_OPCODE_COMMON#define MFDEC1 PPC_OPCODE_POWER#define MFDEC2 PPC_OPCODE_PPC | PPC_OPCODE_601 | PPC_OPCODE_BOOKE#define BOOKE PPC_OPCODE_BOOKE#define BOOKE64 PPC_OPCODE_BOOKE64#define CLASSIC PPC_OPCODE_CLASSIC#define PPCE300 PPC_OPCODE_E300#define PPCSPE PPC_OPCODE_SPE#define PPCISEL PPC_OPCODE_ISEL#define PPCEFS PPC_OPCODE_EFS#define PPCBRLK PPC_OPCODE_BRLOCK#define PPCPMR PPC_OPCODE_PMR#define PPCCHLK PPC_OPCODE_CACHELCK#define PPCCHLK64 PPC_OPCODE_CACHELCK | PPC_OPCODE_BOOKE64#define PPCRFMCI PPC_OPCODE_RFMCI/* The opcode table. The format of the opcode table is: NAME OPCODE MASK FLAGS { OPERANDS } NAME is the name of the instruction. OPCODE is the instruction opcode. MASK is the opcode mask; this is used to tell the disassembler which bits in the actual opcode must match OPCODE. FLAGS are flags indicated what processors support the instruction. OPERANDS is the list of operands. The disassembler reads the table in order and prints the first instruction which matches, so this table is sorted to put more specific instructions before more general instructions. It is also sorted by major opcode. */const struct powerpc_opcode powerpc_opcodes[] = {{ "attn", X(0,256), X_MASK, POWER4, { 0 } },{ "tdlgti", OPTO(2,TOLGT), OPTO_MASK, PPC64, { RA, SI } },{ "tdllti", OPTO(2,TOLLT), OPTO_MASK, PPC64, { RA, SI } },{ "tdeqi", OPTO(2,TOEQ), OPTO_MASK, PPC64, { RA, SI } },{ "tdlgei", OPTO(2,TOLGE), OPTO_MASK, PPC64, { RA, SI } },{ "tdlnli", OPTO(2,TOLNL), OPTO_MASK, PPC64, { RA, SI } },{ "tdllei", OPTO(2,TOLLE), OPTO_MASK, PPC64, { RA, SI } },{ "tdlngi", OPTO(2,TOLNG), OPTO_MASK, PPC64, { RA, SI } },{ "tdgti", OPTO(2,TOGT), OPTO_MASK, PPC64, { RA, SI } },{ "tdgei", OPTO(2,TOGE), OPTO_MASK, PPC64, { RA, SI } },{ "tdnli", OPTO(2,TONL), OPTO_MASK, PPC64, { RA, SI } },{ "tdlti", OPTO(2,TOLT), OPTO_MASK, PPC64, { RA, SI } },{ "tdlei", OPTO(2,TOLE), OPTO_MASK, PPC64, { RA, SI } },{ "tdngi", OPTO(2,TONG), OPTO_MASK, PPC64, { RA, SI } },{ "tdnei", OPTO(2,TONE), OPTO_MASK, PPC64, { RA, SI } },{ "tdi", OP(2), OP_MASK, PPC64, { TO, RA, SI } },{ "twlgti", OPTO(3,TOLGT), OPTO_MASK, PPCCOM, { RA, SI } },{ "tlgti", OPTO(3,TOLGT), OPTO_MASK, PWRCOM, { RA, SI } },{ "twllti", OPTO(3,TOLLT), OPTO_MASK, PPCCOM, { RA, SI } },{ "tllti", OPTO(3,TOLLT), OPTO_MASK, PWRCOM, { RA, SI } },{ "tweqi", OPTO(3,TOEQ), OPTO_MASK, PPCCOM, { RA, SI } },{ "teqi", OPTO(3,TOEQ), OPTO_MASK, PWRCOM, { RA, SI } },{ "twlgei", OPTO(3,TOLGE), OPTO_MASK, PPCCOM, { RA, SI } },{ "tlgei", OPTO(3,TOLGE), OPTO_MASK, PWRCOM, { RA, SI } },{ "twlnli", OPTO(3,TOLNL), OPTO_MASK, PPCCOM, { RA, SI } },{ "tlnli", OPTO(3,TOLNL), OPTO_MASK, PWRCOM, { RA, SI } },{ "twllei", OPTO(3,TOLLE), OPTO_MASK, PPCCOM, { RA, SI } },{ "tllei", OPTO(3,TOLLE), OPTO_MASK, PWRCOM, { RA, SI } },{ "twlngi", OPTO(3,TOLNG), OPTO_MASK, PPCCOM, { RA, SI } },{ "tlngi", OPTO(3,TOLNG), OPTO_MASK, PWRCOM, { RA, SI } },{ "twgti", OPTO(3,TOGT), OPTO_MASK, PPCCOM, { RA, SI } },{ "tgti", OPTO(3,TOGT), OPTO_MASK, PWRCOM, { RA, SI } },{ "twgei", OPTO(3,TOGE), OPTO_MASK, PPCCOM, { RA, SI } },{ "tgei", OPTO(3,TOGE), OPTO_MASK, PWRCOM, { RA, SI } },{ "twnli", OPTO(3,TONL), OPTO_MASK, PPCCOM, { RA, SI } },{ "tnli", OPTO(3,TONL), OPTO_MASK, PWRCOM, { RA, SI } },{ "twlti", OPTO(3,TOLT), OPTO_MASK, PPCCOM, { RA, SI } },{ "tlti", OPTO(3,TOLT), OPTO_MASK, PWRCOM, { RA, SI } },{ "twlei", OPTO(3,TOLE), OPTO_MASK, PPCCOM, { RA, SI } },{ "tlei", OPTO(3,TOLE), OPTO_MASK, PWRCOM, { RA, SI } },{ "twngi", OPTO(3,TONG), OPTO_MASK, PPCCOM, { RA, SI } },{ "tngi", OPTO(3,TONG), OPTO_MASK, PWRCOM, { RA, SI } },{ "twnei", OPTO(3,TONE), OPTO_MASK, PPCCOM, { RA, SI } },{ "tnei", OPTO(3,TONE), OPTO_MASK, PWRCOM, { RA, SI } },{ "twi", OP(3), OP_MASK, PPCCOM, { TO, RA, SI } },{ "ti", OP(3), OP_MASK, PWRCOM, { TO, RA, SI } },{ "macchw", XO(4,172,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchw.", XO(4,172,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchwo", XO(4,172,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchwo.", XO(4,172,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchws", XO(4,236,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchws.", XO(4,236,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchwso", XO(4,236,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchwso.", XO(4,236,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchwsu", XO(4,204,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchwsu.", XO(4,204,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchwsuo", XO(4,204,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchwsuo.", XO(4,204,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchwu", XO(4,140,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchwu.", XO(4,140,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchwuo", XO(4,140,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "macchwuo.", XO(4,140,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhw", XO(4,44,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhw.", XO(4,44,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhwo", XO(4,44,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhwo.", XO(4,44,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhws", XO(4,108,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhws.", XO(4,108,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhwso", XO(4,108,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhwso.", XO(4,108,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhwsu", XO(4,76,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhwsu.", XO(4,76,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhwsuo", XO(4,76,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhwsuo.", XO(4,76,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhwu", XO(4,12,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhwu.", XO(4,12,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhwuo", XO(4,12,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "machhwuo.", XO(4,12,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhw", XO(4,428,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhw.", XO(4,428,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhwo", XO(4,428,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhwo.", XO(4,428,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhws", XO(4,492,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhws.", XO(4,492,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhwso", XO(4,492,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhwso.", XO(4,492,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhwsu", XO(4,460,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhwsu.", XO(4,460,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhwsuo", XO(4,460,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhwsuo.", XO(4,460,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhwu", XO(4,396,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhwu.", XO(4,396,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhwuo", XO(4,396,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "maclhwuo.", XO(4,396,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "mulchw", XRC(4,168,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },{ "mulchw.", XRC(4,168,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },{ "mulchwu", XRC(4,136,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },{ "mulchwu.", XRC(4,136,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },{ "mulhhw", XRC(4,40,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },{ "mulhhw.", XRC(4,40,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },{ "mulhhwu", XRC(4,8,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },{ "mulhhwu.", XRC(4,8,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },{ "mullhw", XRC(4,424,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },{ "mullhw.", XRC(4,424,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },{ "mullhwu", XRC(4,392,0), X_MASK, PPC405|PPC440, { RT, RA, RB } },{ "mullhwu.", XRC(4,392,1), X_MASK, PPC405|PPC440, { RT, RA, RB } },{ "nmacchw", XO(4,174,0,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "nmacchw.", XO(4,174,0,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "nmacchwo", XO(4,174,1,0), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "nmacchwo.", XO(4,174,1,1), XO_MASK, PPC405|PPC440, { RT, RA, RB } },{ "nmacchws", XO(4,238,0,0), XO_MASK, PP
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -