From a44ef2542c5a8fc536120cb201da3b70806e53d2 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Wed, 15 Jul 2020 15:59:28 +0100 Subject: [PATCH] spelling error --- src/soc/fu/mul/post_stage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/fu/mul/post_stage.py b/src/soc/fu/mul/post_stage.py index 0fe957bd..1c144ad1 100644 --- a/src/soc/fu/mul/post_stage.py +++ b/src/soc/fu/mul/post_stage.py @@ -57,7 +57,7 @@ class MulMainStage3(PipeModBase): # compute overflow mul_ov = Signal(reset_less=True) with m.If(is_32bit): - m31 = mul_o[31:64] # yes really bits 31 to 63 (incl) + m32 = mul_o[31:64] # yes really bits 31 to 63 (incl) comb += mul_ov.eq(m32.bool() & ~m32.all()) with m.Else(): m64 = mul_o[63:128] # yes really bits 63 to 127 (incl) -- 2.30.2