projects
/
soc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ae52d9
)
do not start core in terminated mode
author
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Sun, 19 Jul 2020 19:58:00 +0000
(20:58 +0100)
committer
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Sun, 19 Jul 2020 19:58:00 +0000
(20:58 +0100)
src/soc/simple/core.py
patch
|
blob
|
history
diff --git
a/src/soc/simple/core.py
b/src/soc/simple/core.py
index 740cc9908b752cf9f45970db62abc8401b1ae8e0..f03ffab8cafe096791348da56886b8309f2918c3 100644
(file)
--- a/
src/soc/simple/core.py
+++ b/
src/soc/simple/core.py
@@
-85,7
+85,7
@@
class NonProductionCore(Elaboratable):
# start/stop and terminated signalling
self.core_start_i = Signal(reset_less=True)
self.core_stop_i = Signal(reset_less=True)
- self.core_terminated_o = Signal(reset=
1
) # indicates stopped
+ self.core_terminated_o = Signal(reset=
0
) # indicates stopped
def elaborate(self, platform):
m = Module()