generateSV method

Future<String> generateSV()

Generates SystemVerilog for the module as configured.

Implementation

Future<String> generateSV() async {
  final mod = createModule();

  await mod.build();

  return mod.generateSynth();
}