From: Jacob Lifshay Date: Wed, 3 Aug 2022 05:30:59 +0000 (-0700) Subject: add comment on redundancy in PriorityPicker's arguments X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=406a59ee96b948810f274151808c1551517d28f2;p=nmutil.git add comment on redundancy in PriorityPicker's arguments --- diff --git a/src/nmutil/picker.py b/src/nmutil/picker.py index f2cf050..7cf7f7b 100644 --- a/src/nmutil/picker.py +++ b/src/nmutil/picker.py @@ -36,6 +36,8 @@ class PriorityPicker(Elaboratable): * msb_mode is for a MSB-priority picker * reverse_i=True is for convenient reversal of the input bits * reverse_o=True is for convenient reversal of the output bits + * `msb_mode=True` is redundant with `reverse_i=True, reverse_o=True` + but is allowed for backwards compatibility. """ def __init__(self, wid, msb_mode=False, reverse_i=False, reverse_o=False):