begin core in running state
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 23 Jul 2020 19:28:51 +0000 (20:28 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 23 Jul 2020 21:44:34 +0000 (22:44 +0100)
src/soc/simple/core.py

index f6e9a73b724d9a68eabed13674b1d5a643f1c766..4c92fa7f8480ebfcb6b7a0dcc9fdb4c4cf43f04b 100644 (file)
@@ -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):