Class: RubyHDL::High::Value

Inherits:
Expression show all
Defined in:
lib/HDLRuby/std/sequencer_sw.rb

Overview

Describes the software implementation of a value.

Instance Attribute Summary collapse

Attributes inherited from Expression

#type

Instance Method Summary collapse

Methods inherited from Expression

#<=, #[], #mux, #sdownto, #seach, #stimes, #supto, #to_expr

Constructor Details

#initialize(type, content) ⇒ Value

Create a new value with +type+ data type and content +content+.



1906
1907
1908
1909
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 1906

def initialize(type,content)
  super(type)
  @content = content
end

Instance Attribute Details

#contentObject (readonly)

Returns the value of attribute content.



1903
1904
1905
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 1903

def content
  @content
end

Instance Method Details

#to_rubyObject Also known as: to_c

Convert to Ruby code.



1917
1918
1919
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 1917

def to_ruby
  return @content.to_s
end

#to_valueObject

Compute the expression (convert it to a value).



1912
1913
1914
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 1912

def to_value
  return self
end