createModule method

  1. @override
Module createModule()
override

Creates a Module instance as configured.

Implementation

@override
Module createModule() {
  final inp = FloatingPoint(
      exponentWidth: exponentWidthKnob.value,
      mantissaWidth: mantissaWidthKnob.value);
  return FloatingPointSqrtSimple(inp,
      definitionName: 'FloatingPointSqrtSimple');
}