From 272a0021e429a04186b5771d32e5b409826b3810 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 4 Jun 2020 18:53:13 +0100 Subject: [PATCH] oops forgot to switch write-enable off --- src/soc/simple/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/soc/simple/core.py b/src/soc/simple/core.py index c1bbf743..ed688a48 100644 --- a/src/soc/simple/core.py +++ b/src/soc/simple/core.py @@ -164,6 +164,8 @@ class NonProductionCore(Elaboratable): # will the write-enable be activated with m.If(wrpick.en_o): sync += wport.wen.eq(write) + with m.Else(): + sync += wport.wen.eq(0) # connect up the FU req/go signals and the reg-read to the FU # these are arbitrated by Data.ok signals -- 2.30.2