From: Jacob Lifshay Date: Thu, 5 May 2022 04:24:08 +0000 (-0700) Subject: fix RippleMSB X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b5e82ab5d2012b9da8acf4d11169450d70ba4f2e;p=nmutil.git fix RippleMSB TODO: add tests https://bugs.libre-soc.org/show_bug.cgi?id=798#c5 --- 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):