Example #1
0
 public ValueProvider(Type type, VHDLBaseValue value_ = null, string name = "", VHDLDirection direction = VHDLDirection.InOut)
 {
     this.type      = type;
     this.value_    = value_;
     this.name      = name;
     this.direction = direction;
 }
Example #2
0
 public Signal(Type type, VHDLBaseValue value_ = null, string name = "", VHDLDirection direction = VHDLDirection.InOut)
     : base(type, value_, name, direction)
 {
     dump = new NewSortedDictionary <TimeStampInfo <VHDLBaseValue> >();
     if (value_ != null)
     {
         dump.Append(0, new TimeStampInfo <VHDLBaseValue>(value_));
     }
 }
Example #3
0
 public ValueProvider(VHDLBaseValue value_ = null, string name = "", VHDLDirection direction = VHDLDirection.InOut)
     : this(defaultVariableType, value_, name, direction)
 {
 }
Example #4
0
 public Variable(VHDLBaseValue value_ = null, string name = "", VHDLDirection direction = VHDLDirection.InOut)
     : base(value_, name, direction)
 {
 }