From: Luke Kenneth Casson Leighton Date: Thu, 23 Jul 2020 19:28:51 +0000 (+0100) Subject: begin core in running state X-Git-Tag: semi_working_ecp5~600 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=effa4641a61b484ea26f3c91c280f69bc811f84a;p=soc.git begin core in running state --- diff --git a/src/soc/simple/core.py b/src/soc/simple/core.py index f6e9a73b..4c92fa7f 100644 --- a/src/soc/simple/core.py +++ b/src/soc/simple/core.py @@ -99,7 +99,7 @@ class NonProductionCore(Elaboratable): fus = self.fus.fus # core start/stopped state - core_stopped = Signal(reset=1) # begins in stopped state + core_stopped = Signal(reset=0) # begins in running state # start/stop signalling with m.If(self.core_start_i):