Class: Numeric

Inherits:
Object
  • Object
show all
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

Instance Method Details

#fsObject

Converts to a new dealy in fentoseconds.



5161
5162
5163
# File 'lib/HDLRuby/hruby_high.rb', line 5161

def fs
  return Delay.new(self,:fs)
end

#msObject

Converts to a new delay in milliseconds.



5181
5182
5183
# File 'lib/HDLRuby/hruby_high.rb', line 5181

def ms
    return Delay.new(self,:ms)
end

#nsObject

Converts to a new delay in nanoseconds.



5171
5172
5173
# File 'lib/HDLRuby/hruby_high.rb', line 5171

def ns
    return Delay.new(self,:ns)
end

#psObject

Converts to a new delay in picoseconds.



5166
5167
5168
# File 'lib/HDLRuby/hruby_high.rb', line 5166

def ps
    return Delay.new(self,:ps)
end

#sObject

Converts to a new delay in seconds.



5186
5187
5188
# File 'lib/HDLRuby/hruby_high.rb', line 5186

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.



760
761
762
# File 'lib/HDLRuby/hruby_low2hdr.rb', line 760

def to_hdr(level = 0)
    return self.to_s
end

#to_valueObject

Converts to a new high-level value.



5156
5157
5158
# File 'lib/HDLRuby/hruby_high.rb', line 5156

def to_value
    to_expr
end

#to_value?Boolean

Tell if the expression can be converted to a value.

Returns:

  • (Boolean)


5151
5152
5153
# File 'lib/HDLRuby/hruby_high.rb', line 5151

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

#usObject

Converts to a new delay in microseconds.



5176
5177
5178
# File 'lib/HDLRuby/hruby_high.rb', line 5176

def us
    return Delay.new(self,:us)
end