From 6633617e7298134fbc0ce6200e06901424048093 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 26 Jun 2020 20:09:57 +0100 Subject: [PATCH] set pi.ld.ok to 1 if pi.is_ld_i is set --- src/soc/experiment/pi2ls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/experiment/pi2ls.py b/src/soc/experiment/pi2ls.py index 79b2f267..f2c485c9 100644 --- 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) -- 2.30.2