Class: ClassHDL::HDLAlwaysCombBlock
- Inherits:
-
Object
- Object
- ClassHDL::HDLAlwaysCombBlock
- Defined in:
- lib/tdl/class_hdl/hdl_always_comb.rb
Instance Attribute Summary collapse
-
#belong_to_module ⇒ Object
readonly
Returns the value of attribute belong_to_module.
-
#opertor_chains ⇒ Object
Returns the value of attribute opertor_chains.
Instance Method Summary collapse
-
#initialize(belong_to_module) ⇒ HDLAlwaysCombBlock
constructor
A new instance of HDLAlwaysCombBlock.
- #instance ⇒ Object
Constructor Details
#initialize(belong_to_module) ⇒ HDLAlwaysCombBlock
Returns a new instance of HDLAlwaysCombBlock.
7 8 9 10 11 12 13 |
# File 'lib/tdl/class_hdl/hdl_always_comb.rb', line 7 def initialize(belong_to_module) @opertor_chains = [] @belong_to_module = belong_to_module unless @belong_to_module raise TdlError.new("HDLAlwaysCombBlock must have belong_to_module") end end |
Instance Attribute Details
#belong_to_module ⇒ Object (readonly)
Returns the value of attribute belong_to_module.
6 7 8 |
# File 'lib/tdl/class_hdl/hdl_always_comb.rb', line 6 def belong_to_module @belong_to_module end |
#opertor_chains ⇒ Object
Returns the value of attribute opertor_chains.
5 6 7 |
# File 'lib/tdl/class_hdl/hdl_always_comb.rb', line 5 def opertor_chains @opertor_chains end |
Instance Method Details
#instance ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/tdl/class_hdl/hdl_always_comb.rb', line 15 def instance str = [] str.push "always_comb begin " opertor_chains.each do |op| unless op.is_a? OpertorChain str.push op.instance(:assign).gsub(/^./){ |m| " #{m}"} else unless op.slaver rel_str = ClassHDL.compact_op_ch(op.instance(:assign, @belong_to_module)) str.push " #{rel_str};" end end end str.push "end\n" str.join("\n") end |