@@ -23,19 +23,19 @@ abstract class FloatingPointSqrt<FpType extends FloatingPoint> extends Module {
23
23
24
24
/// The [clk] : if a non-null clock signal is passed in, a pipestage is added
25
25
/// to the square root to help optimize frequency.
26
- /// Plummed for future work for pipelining, currently unsupported.
26
+ /// Plumbed for future work for pipelining, currently unsupported.
27
27
@protected
28
28
late final Logic ? clk;
29
29
30
30
/// Optional [reset] , used only if a [clk] is not null to reset the pipeline
31
31
/// flops.
32
- /// Plummed for future work for pipelining, currently unsupported.
32
+ /// Plumbed for future work for pipelining, currently unsupported.
33
33
@protected
34
34
late final Logic ? reset;
35
35
36
36
/// Optional [enable] , used only if a [clk] is not null to enable the pipeline
37
37
/// flops.
38
- /// Plummed for future work for pipelining, currently unsupported.
38
+ /// Plumbed for future work for pipelining, currently unsupported.
39
39
@protected
40
40
late final Logic ? enable;
41
41
@@ -50,9 +50,6 @@ abstract class FloatingPointSqrt<FpType extends FloatingPoint> extends Module {
50
50
/// getter for the [error] output.
51
51
late final Logic error = Logic (name: 'error' )..gets (output ('error' ));
52
52
53
- /// The internal error signal to pass through
54
- late final Logic errorSig;
55
-
56
53
/// Square root a floating point number [a] , returning result in [sqrt] .
57
54
/// - [clk] , [reset] , [enable] are optional inputs to control a pipestage
58
55
/// (only inserted if [clk] is provided)
0 commit comments