From b5e82ab5d2012b9da8acf4d11169450d70ba4f2e Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Wed, 4 May 2022 21:24:08 -0700 Subject: [PATCH] fix RippleMSB TODO: add tests https://bugs.libre-soc.org/show_bug.cgi?id=798#c5 --- src/nmutil/ripple.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nmutil/ripple.py b/src/nmutil/ripple.py index 6e7a5af..1afa05d 100644 --- a/src/nmutil/ripple.py +++ b/src/nmutil/ripple.py @@ -78,7 +78,7 @@ class RippleMSB(Ripple): """ def __init__(self, width): - Ripple.__init__(self, width, start_lsb=True) + Ripple.__init__(self, width, start_lsb=False) class MoveMSBDown(Elaboratable): -- 2.30.2