public VHDLPhysicalValue(VHDLPhysicalType <T> physicalType) : base(physicalType) { this.physicalType = physicalType; init(0); }
public VHDLPhysicalValue(VHDLPhysicalType <T> physicalType, VHDLPhysicalValue <T> value) : base(physicalType) { this.physicalType = physicalType; init(value.mValue); }
public VHDLPhysicalValue(VHDLPhysicalType <T> physicalType, long value, string unitName) : base(physicalType) { this.physicalType = physicalType; init(value, unitName); }