From: Luke Kenneth Casson Leighton Date: Fri, 26 Jun 2020 19:09:57 +0000 (+0100) Subject: set pi.ld.ok to 1 if pi.is_ld_i is set X-Git-Tag: div_pipeline~256 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6633617e7298134fbc0ce6200e06901424048093;p=soc.git set pi.ld.ok to 1 if pi.is_ld_i is set --- 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)