From: Luke Kenneth Casson Leighton Date: Wed, 10 Jun 2020 16:09:46 +0000 (+0100) Subject: yield ports from data_o and addr_o X-Git-Tag: div_pipeline~412 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=341f1809ce30b9395b4a9f239bae0a65f5501fac;p=soc.git yield ports from data_o and addr_o --- diff --git a/src/soc/experiment/compldst_multi.py b/src/soc/experiment/compldst_multi.py index 5f809019..b1ddf8b7 100644 --- a/src/soc/experiment/compldst_multi.py +++ b/src/soc/experiment/compldst_multi.py @@ -497,8 +497,8 @@ class LDSTCompUnit(RegSpecAPI, Elaboratable): yield self.adr_rel_o yield self.sto_rel_o yield self.wr.rel - yield self.data_o - yield self.addr_o + yield from self.data_o.ports() + yield from self.addr_o.ports() yield self.load_mem_o yield self.stwd_mem_o