Class: HDLRuby::High::TimeBehavior
- Inherits:
-
Low::TimeBehavior
- Object
- Base::Behavior
- Low::Behavior
- Low::TimeBehavior
- HDLRuby::High::TimeBehavior
- Defined in:
- lib/HDLRuby/hruby_high.rb
Overview
Describes a high-level timed behavior.
Constant Summary collapse
- High =
HDLRuby::High
Constants included from Low::Low2Symbol
Low::Low2Symbol::Low2SymbolPrefix, Low::Low2Symbol::Low2SymbolTable, Low::Low2Symbol::Symbol2LowTable
Instance Attribute Summary
Attributes inherited from Low::Behavior
Attributes included from Low::Hparent
Instance Method Summary collapse
-
#initialize(mode, &ruby_block) ⇒ TimeBehavior
constructor
Creates a new timed behavior built by executing +ruby_block+.
-
#to_low ⇒ Object
Converts the time behavior to HDLRuby::Low.
Methods inherited from Low::TimeBehavior
#add_event, #eql?, #hash, #set_block!, #to_c, #to_high
Methods inherited from Low::Behavior
#add_event, #blocks2seq!, #delete_event!, #each_block, #each_block_deep, #each_event, #each_node_deep, #each_statement, #eql?, #explicit_types!, #extract_declares!, #has_event?, #hash, #last_statement, #map_events!, #mixblocks2seq!, #on_edge?, #on_event?, #parent_system, #replace_names!, #reverse_each_statement, #set_block!, #to_c, #to_ch, #to_high, #to_upper_space!, #to_vhdl, #top_scope, #with_boolean!, #with_var!
Methods included from Low::Low2Symbol
Methods included from Low::Hparent
Constructor Details
#initialize(mode, &ruby_block) ⇒ TimeBehavior
Creates a new timed behavior built by executing +ruby_block+. +mode+ can be either :seq or :par for respectively sequential or
3609 3610 3611 3612 3613 3614 |
# File 'lib/HDLRuby/hruby_high.rb', line 3609 def initialize(mode, &ruby_block) # Create a default par block for the behavior. block = High.make_time_block(mode,&ruby_block) # Initialize the behavior with it. super(block) end |
Instance Method Details
#to_low ⇒ Object
Converts the time behavior to HDLRuby::Low.
3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 |
# File 'lib/HDLRuby/hruby_high.rb', line 3617 def to_low # Create the low level block. blockL = self.block.to_low # Create the low level events. eventLs = self.each_event.map { |event| event.to_low } # Create and return the resulting low level behavior. behaviorL = HDLRuby::Low::TimeBehavior.new(blockL) eventLs.each(&behaviorL.method(:add_event)) return behaviorL end |