class ClassHDL::HDLAlwaysCombBlock
Attributes
belong_to_module[R]
opertor_chains[RW]
Public Class Methods
new(belong_to_module)
click to toggle source
# 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
Public Instance Methods
instance()
click to toggle source
# 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