startCosimProcess method

  1. @override
Future<Process> startCosimProcess(
  1. String directory
)
override

Starts the execution of the SystemVerilog simulator with all proper arguments to accept communication from ROHD.

Implementation

@override
Future<Process> startCosimProcess(String directory) => Process.start(
      'make',
      [
        '-C',
        directory,
        '-f',
        _cosimMakefileName,
      ],
      environment: environment,
    );