createModule method
override
Creates a Module instance as configured.
Implementation
@override
Module createModule() => FloatingPointMultiplierSimple(
clk: multiplierSelectKnob.pipelinedKnob.value ? Logic() : null,
FloatingPoint(
exponentWidth: exponentWidthKnob.value,
mantissaWidth: mantissaWidthKnob.value,
),
FloatingPoint(
exponentWidth: exponentWidthKnob.value,
mantissaWidth: mantissaWidthKnob.value),
multGen: multiplierSelectKnob.selectedMultiplier(),
definitionName: 'FloatingPointMultiplierSimple');