projects
/
soc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa77020
)
delay go_st by one cycle, break combinatorial loop
author
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Sun, 9 Aug 2020 15:08:58 +0000
(16:08 +0100)
committer
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Sun, 9 Aug 2020 15:08:58 +0000
(16:08 +0100)
src/soc/simple/issuer.py
patch
|
blob
|
history
diff --git
a/src/soc/simple/issuer.py
b/src/soc/simple/issuer.py
index 168f389f0d57c4800e99c07f6218683607ac9011..cfc0be4850d1495e2e7673f95281bb46dc9a6b40 100644
(file)
--- a/
src/soc/simple/issuer.py
+++ b/
src/soc/simple/issuer.py
@@
-106,7
+106,7
@@
class TestIssuer(Elaboratable):
l0 = core.l0
ldst = core.fus.fus['ldst0']
m.d.comb += ldst.ad.go_i.eq(ldst.ad.rel_o) # link addr-go direct to rel
- m.d.
comb
+= ldst.st.go_i.eq(ldst.st.rel_o) # link store-go direct to rel
+ m.d.
sync
+= ldst.st.go_i.eq(ldst.st.rel_o) # link store-go direct to rel
# PC and instruction from I-Memory
current_insn = Signal(32) # current fetched instruction (note sync)