From effa4641a61b484ea26f3c91c280f69bc811f84a Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 23 Jul 2020 20:28:51 +0100 Subject: [PATCH] begin core in running state --- src/soc/simple/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.30.2