Example #1
0
 public FloatTypeInfo(string name, TypeKind kind, BinaryReader reader)
     : base(name, kind, reader)
 {
     Width = (FloatWidth)reader.ReadInt32();
 }
Example #2
0
 public FloatTypeInfo(string name, FloatWidth width)
     : base(name, TypeKind.Float)
 {
     Width = width;
 }