Class: Float
- Inherits:
-
Object
- Object
- Float
- Defined in:
- lib/HDLRuby/hruby_high.rb
Overview
Extends the Float class for computing the bit width and conversion to expression.
Instance Method Summary collapse
-
#to_expr ⇒ Object
Converts to a new high-level expression.
-
#width ⇒ Object
Gets the bit width.
Instance Method Details
#to_expr ⇒ Object
Converts to a new high-level expression.
4917 4918 4919 |
# File 'lib/HDLRuby/hruby_high.rb', line 4917 def to_expr return Value.new(Real,self) end |
#width ⇒ Object
Gets the bit width
4922 4923 4924 |
# File 'lib/HDLRuby/hruby_high.rb', line 4922 def width return 64 end |