Module: HDLRuby::High::RCSimBlock

Included in:
Block, TimeBlock
Defined in:
lib/HDLRuby/hruby_rcsim.rb

Overview

Module for extending the Block classes for hybrid Ruby-C simulation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#rcstatementObject (readonly)

Returns the value of attribute rcstatement.



773
774
775
# File 'lib/HDLRuby/hruby_rcsim.rb', line 773

def rcstatement
  @rcstatement
end

Instance Method Details

#to_rcsim(owner = nil) ⇒ Object

Generate the C description of the hardware case. +owner+ is a link to the C description of the owner behavior if any.



777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
# File 'lib/HDLRuby/hruby_rcsim.rb', line 777

def to_rcsim(owner = nil)
    # Create the block C object.
    @rcstatement = RCSim.rcsim_make_block(self.mode)

    # Sets the owner if any.
    if owner then
        RCSim.rcsim_set_owner(@rcstatement,owner)
    end

    # Add the inner signals.
    if self.each_inner.any? then
        RCSim.rcsim_add_block_inners(@rcstatement,
                                     self.each_inner.map do |sig|
            sig.to_rcsim(@rcstatement)
        end)
    end

    # Add the statements.
    if self.each_statement.any? then
        RCSim.rcsim_add_block_statements(@rcstatement,
                                    self.each_statement.map do |stmnt|
            stmnt.to_rcsim
        end)
    end

    return @rcstatement
end