From: Luke Kenneth Casson Leighton Date: Wed, 3 Feb 2021 21:24:05 +0000 (+0000) Subject: actually no need to mux in the svp64_rm, just the id "is this svp64" is enough X-Git-Tag: convert-csv-opcode-to-binary~264 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a68121447b4cab3fba5ab7c525dc8ee58d74cf3f;p=soc.git actually no need to mux in the svp64_rm, just the id "is this svp64" is enough --- diff --git a/src/soc/decoder/power_decoder2.py b/src/soc/decoder/power_decoder2.py index 2f6c0bde..a5fab3da 100644 --- a/src/soc/decoder/power_decoder2.py +++ b/src/soc/decoder/power_decoder2.py @@ -1307,8 +1307,7 @@ class SVP64PowerDecoder(Elaboratable): l = [] for idx in rmfields: l.append(self.opcode_in[32-idx]) - with m.If(self.is_svp64_mode): - comb += self.svp64_rm.eq(Cat(*l)) + comb += self.svp64_rm.eq(Cat(*l)) return m