Class: Numeric
- Inherits:
-
Object
- Object
- Numeric
- Defined in:
- lib/HDLRuby/hruby_high.rb,
lib/HDLRuby/std/fixpoint.rb,
lib/HDLRuby/hruby_low2hdr.rb,
lib/HDLRuby/hruby_low2vhd.rb,
lib/HDLRuby/hruby_verilog.rb
Overview
Extends the Numeric class for conversion to fixed point litteral.
Instance Method Summary collapse
-
#fs ⇒ Object
Converts to a new dealy in fentoseconds.
-
#ms ⇒ Object
Converts to a new delay in milliseconds.
-
#ns ⇒ Object
Converts to a new delay in nanoseconds.
-
#ps ⇒ Object
Converts to a new delay in picoseconds.
-
#s ⇒ Object
Converts to a new delay in seconds.
-
#to_fix(dec) ⇒ Object
Convert to fixed point value with +dec+ digits after the decimal point.
-
#to_hdr(level = 0) ⇒ Object
Generates the text of the equivalent hdr text.
-
#to_value ⇒ Object
Converts to a new high-level value.
-
#to_value? ⇒ Boolean
Tell if the expression can be converted to a value.
-
#to_verilog(level = 0) ⇒ Object
Generates the text of the equivalent verilog code.
-
#to_vhdl(level = 0) ⇒ Object
Generates the text of the equivalent HDLRuby::High code.
-
#us ⇒ Object
Converts to a new delay in microseconds.
Instance Method Details
#fs ⇒ Object
Converts to a new dealy in fentoseconds.
4933 4934 4935 |
# File 'lib/HDLRuby/hruby_high.rb', line 4933 def fs return Delay.new(self,:fs) end |
#ms ⇒ Object
Converts to a new delay in milliseconds.
4953 4954 4955 |
# File 'lib/HDLRuby/hruby_high.rb', line 4953 def ms return Delay.new(self,:ms) end |
#ns ⇒ Object
Converts to a new delay in nanoseconds.
4943 4944 4945 |
# File 'lib/HDLRuby/hruby_high.rb', line 4943 def ns return Delay.new(self,:ns) end |
#ps ⇒ Object
Converts to a new delay in picoseconds.
4938 4939 4940 |
# File 'lib/HDLRuby/hruby_high.rb', line 4938 def ps return Delay.new(self,:ps) end |
#s ⇒ Object
Converts to a new delay in seconds.
4958 4959 4960 |
# File 'lib/HDLRuby/hruby_high.rb', line 4958 def s return Delay.new(self,:s) end |
#to_fix(dec) ⇒ Object
Convert to fixed point value with +dec+ digits after the decimal point.
89 90 91 |
# File 'lib/HDLRuby/std/fixpoint.rb', line 89 def to_fix(dec) return (self * (2**dec.to_i)).to_i end |
#to_hdr(level = 0) ⇒ Object
Generates the text of the equivalent hdr text. +level+ is the hierachical level of the object.
759 760 761 |
# File 'lib/HDLRuby/hruby_low2hdr.rb', line 759 def to_hdr(level = 0) return self.to_s end |
#to_value ⇒ Object
Converts to a new high-level value.
4928 4929 4930 |
# File 'lib/HDLRuby/hruby_high.rb', line 4928 def to_value to_expr end |
#to_value? ⇒ Boolean
Tell if the expression can be converted to a value.
4923 4924 4925 |
# File 'lib/HDLRuby/hruby_high.rb', line 4923 def to_value? return true end |
#to_verilog(level = 0) ⇒ Object
Generates the text of the equivalent verilog code. +level+ is the hierachical level of the object.
2478 2479 2480 |
# File 'lib/HDLRuby/hruby_verilog.rb', line 2478 def to_verilog(level = 0) return self.to_s end |
#to_vhdl(level = 0) ⇒ Object
Generates the text of the equivalent HDLRuby::High code. +level+ is the hierachical level of the object.
1580 1581 1582 |
# File 'lib/HDLRuby/hruby_low2vhd.rb', line 1580 def to_vhdl(level = 0) return self.to_s end |