示例#1
0
 /**
  * Set the display register with any calculated results
  */
 public void updateDisplay()
 {
     if (displayUpdate && !operandStack.empty())
     {
         Value.Value value = operandStack.peek();
         display.setValue(value);
         doNotify(new OperandCommand(value));
         displayUpdate = false;
     }
 }
示例#2
0
 public override Value.Value executeBinary(Value.Value value1, Value.Value value2)
 {
     throw new NotImplementedException();
 }