startCosimProcess method
- 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,
);