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.



509
510
511
# File 'lib/HDLRuby/hruby_rcsim.rb', line 509

def rcstatement
  @rcstatement
end

Instance Method Details

#execute(mode) ⇒ Object

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



602
603
604
# File 'lib/HDLRuby/hruby_rsim.rb', line 602

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

#init_sim(systemT) ⇒ Object

Initialize the simulation for system +systemT+.



596
597
598
# File 'lib/HDLRuby/hruby_rsim.rb', line 596

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

#to_rcsimObject

Generate the C description of the statement.



512
513
514
# File 'lib/HDLRuby/hruby_rcsim.rb', line 512

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