projects
/
soc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f9112e
)
set pi.ld.ok to 1 if pi.is_ld_i is set
author
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Fri, 26 Jun 2020 19:09:57 +0000
(20:09 +0100)
committer
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Fri, 26 Jun 2020 19:09:57 +0000
(20:09 +0100)
src/soc/experiment/pi2ls.py
patch
|
blob
|
history
diff --git
a/src/soc/experiment/pi2ls.py
b/src/soc/experiment/pi2ls.py
index 79b2f2677b0db6033dcfa5a8f5c421d63606e761..f2c485c93d1e395143aa83769409f9a95131695d 100644
(file)
--- a/
src/soc/experiment/pi2ls.py
+++ b/
src/soc/experiment/pi2ls.py
@@
-64,7
+64,7
@@
class Pi2LSUI(Elaboratable):
with m.If(pi.is_ld_i):
m.d.comb += pi.ld.data.eq(lsui.m_ld_data_o)
- #m.d.comb += pi.ld.ok.eq(TODO)
+ m.d.comb += pi.ld.ok.eq(1) # TODO whether this should be one cycle
with m.If(pi.is_st_i & pi.st.ok):
m.d.comb += lsui.x_st_data_i.eq(pi.st.data)