class Float

Extends the Float class for computing for conversion to expression.

Extends the Float class for computing the bit width and conversion to expression.

Public Instance Methods

to_expr() click to toggle source

Converts to a new high-level expression.

# File lib/HDLRuby/hruby_high.rb, line 4267
def to_expr
    return Value.new(Float,self)
end
width() click to toggle source

Gets the bit width

# File lib/HDLRuby/hruby_high.rb, line 4281
def width
    return 64
end