From: Tobias Platen Date: Tue, 26 Jan 2021 19:37:41 +0000 (+0100) Subject: [Bug 580] update comment above changed block X-Git-Tag: convert-csv-opcode-to-binary~311 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f6a11fbea233d6d8228e9d55e63f25f8d09b7662;p=soc.git [Bug 580] update comment above changed block --- diff --git a/src/soc/decoder/power_decoder2.py b/src/soc/decoder/power_decoder2.py index 1633d191..750331bc 100644 --- a/src/soc/decoder/power_decoder2.py +++ b/src/soc/decoder/power_decoder2.py @@ -731,7 +731,7 @@ class PowerDecodeSubset(Elaboratable): spr = Signal(10, reset_less=True) comb += spr.eq(decode_spr_num(self.dec.SPR)) # from XFX - # for first test only forward SPR 18 to mmu + # for first test only forward SPRs 18 and 19 to MMU with m.If(self.dec.op.internal_op == MicrOp.OP_MTSPR): with m.If((spr == 18) | (spr == 19)): comb += self.do_copy("fn_unit",Function.MMU)