From: Tobias Platen Date: Sat, 13 Feb 2021 20:13:50 +0000 (+0100) Subject: keep commits to under 80 chars X-Git-Tag: convert-csv-opcode-to-binary~233 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8a19cb9da3aed20aa1d3c23317d759c1767eae1c;p=soc.git keep commits to under 80 chars --- diff --git a/src/soc/decoder/power_decoder2.py b/src/soc/decoder/power_decoder2.py index 3dcc5a37..883c9128 100644 --- a/src/soc/decoder/power_decoder2.py +++ b/src/soc/decoder/power_decoder2.py @@ -912,7 +912,8 @@ class PowerDecodeSubset(Elaboratable): SPR_PRTBL = 720 # see common.vhdl in microwatt, not in POWER9 with m.If(((self.dec.op.internal_op == MicrOp.OP_MTSPR) | (self.dec.op.internal_op == MicrOp.OP_MFSPR)) & - ((spr == SPR.DSISR) | (spr == SPR.DAR) | (spr==SPR_PRTBL) | (spr==SPR_PID))): + ((spr == SPR.DSISR) | (spr == SPR.DAR) + | (spr==SPR_PRTBL) | (spr==SPR_PID))): comb += self.do_copy("fn_unit", Function.MMU) with m.Else(): comb += self.do_copy("fn_unit",fn)