コード例 #1
0
 public VHDLFloatingPointValue(VHDLFloatingPointType floatType, double value)
     : base(floatType)
 {
     this.floatType = floatType;
     mValue         = (Int64)value;
     init();
 }
コード例 #2
0
 public VHDLFloatingPointValue(VHDLFloatingPointType floatType, ulong value)
     : base(floatType)
 {
     this.floatType = floatType;
     mValue         = value;
     init();
 }
コード例 #3
0
 public VHDLFloatingPointValue(VHDLFloatingPointType floatType, Decimal value)
     : base(floatType)
 {
     this.floatType = floatType;
     mValue         = (double)value;
     init();
 }