示例#1
0
 public VHDLPhysicalType(Int64 left, Int64 right, RangeDirection direction)
 {
     defPhysicalType = this;
     Range           = new PhysicalRange <T>(left, right, direction);
 }
示例#2
0
 public VHDLPhysicalType()
 {
     defPhysicalType = this;
     Range           = new PhysicalRange <T>();
 }
示例#3
0
 public VHDLPhysicalType(PhysicalRange <T> range)
 {
     defPhysicalType = this;
     Range           = range;
 }