Class: HDLRuby::High::Statement

Inherits:
Object
  • Object
show all
Defined in:
lib/HDLRuby/hruby_rsim.rb,
lib/HDLRuby/hruby_rcsim.rb

Overview

Extends the Statement class for hybrid Ruby-C simulation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#rcstatementObject (readonly)

Returns the value of attribute rcstatement.



497
498
499
# File 'lib/HDLRuby/hruby_rcsim.rb', line 497

def rcstatement
  @rcstatement
end

Instance Method Details

#execute(mode) ⇒ Object

Executes the statement in +mode+ (:blocking or :nonblocking) NOTE: to be overrided.



542
543
544
# File 'lib/HDLRuby/hruby_rsim.rb', line 542

def execute(mode)
    raise "execute must be implemented in class #{self.class}"
end

#init_sim(systemT) ⇒ Object

Initialize the simulation for system +systemT+.



536
537
538
# File 'lib/HDLRuby/hruby_rsim.rb', line 536

def init_sim(systemT)
    raise "init_sim must be implemented in class #{self.class}"
end

#to_rcsimObject

Generate the C description of the statement.



500
501
502
# File 'lib/HDLRuby/hruby_rcsim.rb', line 500

def to_rcsim
    raise "to_rcsim must be implemented in #{self.class}"
end