Class: Float

Inherits:
Object
  • Object
show all
Defined in:
lib/HDLRuby/hruby_high.rb,
lib/HDLRuby/hruby_high.rb

Overview

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

Instance Method Summary collapse

Instance Method Details

#to_exprObject

Converts to a new high-level expression.



3909
3910
3911
# File 'lib/HDLRuby/hruby_high.rb', line 3909

def to_expr
    return Value.new(Float,self)
end

#widthObject

Gets the bit width



3923
3924
3925
# File 'lib/HDLRuby/hruby_high.rb', line 3923

def width
    return 64
end