| 4038 | DecodeFunc(U32 immWidth, U32 signExtendWidth) : Decode(immWidth, signExtendWidth) { |
| 4039 | } |
| 4040 | void func(DecodeData* data, DecodedOp* op, U32 rm, Instruction reg, Instruction mem) const { |
| 4041 | if (rm>=0xC0) { |
| 4042 | op->inst = reg; |
| 4043 | op->reg = E(rm); |
| 4044 | } else { |
| 4045 | op->inst = mem; |
| 4046 | decodeEa(data, op, rm); |
| 4047 | } |
| 4048 | } |
| 4049 | }; |
| 4050 | |
| 4051 | class DecodeGrp1_8 : public DecodeFunc { |
no test coverage detected