run method

  1. @override
Future<void> run(
  1. Phase phase
)
override

Executes this Component's activities related to running the test.

Overrides of run must call super.run in an unawaited fashion. For example:

@override
Future<void> run(Phase phase) async {
  unawaited(super.run(phase));
  // New code goes here!
}

Implementation

@override
Future<void> run(Phase phase) async {
  unawaited(super.run(phase));

  Simulator.injectAction(() {
    _deselectAll();
    intf.enable.put(0);
    intf.write.put(0);
    intf.addr.put(0);
    intf.wData.put(0);
    intf.strb.put(0);
  });

  // wait for reset to complete before driving anything
  await intf.resetN.nextPosedge;

  while (!Simulator.simulationHasEnded) {
    if (pendingSeqItems.isNotEmpty) {
      await _drivePacket(pendingSeqItems.removeFirst());
    } else {
      await intf.clk.nextPosedge;
      Simulator.injectAction(() {
        _deselectAll();
        intf.enable.put(0);
      });
    }
  }
}