Class: HDLRuby::LowDB::SystemI

Inherits:
Base::SystemI
  • Object
show all
Defined in:
lib/HDLRuby/hruby_db.rb

Overview

Describes a system instance.

Instance Method Summary collapse

Constructor Details

#initialize(name, systemT) ⇒ SystemI

Creates a new system instance of system type +systemT+ named +name+.



248
249
250
251
252
253
# File 'lib/HDLRuby/hruby_db.rb', line 248

def initialize(name, systemT)
    # Ensures systemT is from Low::SystemT
    systemT = SystemT.get(systemT)
    # Initialize the system instance structure.
    super(name,systemT)
end