public RTLInstanceSimulator(TModule topLevel)
 {
     _topLevel = topLevel;
     _topLevel.Setup();
     _simulatorContext = new RTLSimulatorContext();
 }
Ejemplo n.º 2
0
 protected void Initialize(TModule topLevel)
 {
     _topLevel = topLevel;
     _topLevel.Setup();
     _simulatorContext = new RTLSimulatorContext();
 }
Ejemplo n.º 3
0
 public TestbenchGenerator(RTLSimulatorContext simulatorContext, IRTLCombinationalModule topLevel)
 {
     _simulatorContext = simulatorContext;
     _topLevel         = topLevel;
 }