Exemple #1
0
 public override void decode()
 {
     condition = getSectionValue(31, 28, instruction);
     opcode = getSectionValue(24, 21, instruction);
     rn = getSectionValue(19, 16, instruction);
     rd = getSectionValue(15, 12, instruction);
     In_dp_OperandTwo myOp2 = new In_dp_OperandTwo(myRegister, instruction);
     operand2 = myOp2.getValue();
 }
Exemple #2
0
        public override void decode()
        {
            condition = getSectionValue(31, 28, instruction);
            opcode    = getSectionValue(24, 21, instruction);
            rn        = getSectionValue(19, 16, instruction);
            rd        = getSectionValue(15, 12, instruction);
            In_dp_OperandTwo myOp2 = new In_dp_OperandTwo(myRegister, instruction);

            operand2 = myOp2.getValue();
        }