set pi.ld.ok to 1 if pi.is_ld_i is set
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 26 Jun 2020 19:09:57 +0000 (20:09 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 26 Jun 2020 19:09:57 +0000 (20:09 +0100)
src/soc/experiment/pi2ls.py

index 79b2f2677b0db6033dcfa5a8f5c421d63606e761..f2c485c93d1e395143aa83769409f9a95131695d 100644 (file)
@@ -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)