Searched refs:operand1 (Results 1 – 2 of 2) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/MSP430X/ |
| D | MSP430X.cs | 1113 …var operand1 = GetOperandValue((Registers)source, sourceAddressing, out var sourceAddress, accessW… in TryEvaluateDoubleOperand() 1118 …erand1=0x{0:X} AddressingMode={1} Operand2=0x{2:X} AddressingMode={3}", operand1, sourceAddressing… in TryEvaluateDoubleOperand() 1125 operand1 &= GetAccessWidthMask(accessWidth); in TryEvaluateDoubleOperand() 1130 temporaryValue = operand1 + operand2; in TryEvaluateDoubleOperand() 1132 CheckForOverflow(operand1, operand2, temporaryValue, accessWidth); in TryEvaluateDoubleOperand() 1133 … operand1 = temporaryValue; // XXX: Just use this variable instead of operand1 in TryEvaluateDoubleOperand() 1138 … temporaryValue = operand1 + operand2 + (statusRegister.HasFlag(StatusFlags.Carry) ? 1U : 0U); in TryEvaluateDoubleOperand() 1140 CheckForOverflow(operand1, operand2, temporaryValue, accessWidth); in TryEvaluateDoubleOperand() 1141 operand1 = temporaryValue; in TryEvaluateDoubleOperand() 1146 … operand1 = (operand1 ^ GetAccessWidthMask(accessWidth)) & GetAccessWidthMask(accessWidth); in TryEvaluateDoubleOperand() [all …]
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/ |
| D | MSP430F2XXX_MPY.cs | 41 operand1 = (uint)value; in SetModeAndOperand() 57 var result = operand1 * operand2; in PerformCalculation() 66 var result = (short)operand1 * (short)operand2; in PerformCalculation() 74 var result = LastResult + (int)(operand1 * operand2); in PerformCalculation() 82 var result = LastResult + (short)operand1 * (short)operand2; in PerformCalculation() 133 private uint operand1; field in Antmicro.Renode.Peripherals.Miscellaneous.MSP430F2XXX_MPY
|