OpCodeT32Tb.cs 492 B

12345678910111213141516
  1. namespace ARMeilleure.Decoders
  2. {
  3. class OpCodeT32Tb : OpCodeT32, IOpCode32BReg
  4. {
  5. public int Rm { get; }
  6. public int Rn { get; }
  7. public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeT32Tb(inst, address, opCode);
  8. public OpCodeT32Tb(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
  9. {
  10. Rm = (opCode >> 0) & 0xf;
  11. Rn = (opCode >> 16) & 0xf;
  12. }
  13. }
  14. }