| 1234567891011121314 |
- namespace ARMeilleure.Decoders
- {
- class OpCode32SimdSpecial : OpCode32
- {
- public int Rt { get; private set; }
- public int Sreg { get; private set; }
- public OpCode32SimdSpecial(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
- {
- Rt = (opCode >> 12) & 0xf;
- Sreg = (opCode >> 16) & 0xf;
- }
- }
- }
|