X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fsoc%2Fbus%2Ftercel.py;h=a927ef25b7cbccdc0305b1e3d59c9ce1a602c24f;hb=2fe9d423927766608581b27378a585aeb499a760;hp=c7d550ed0c28304d7d2be565171549bc5812237a;hpb=005434e3016da3b83c11639cc245818eb3e34fd4;p=soc.git diff --git a/src/soc/bus/tercel.py b/src/soc/bus/tercel.py index c7d550ed..a927ef25 100644 --- a/src/soc/bus/tercel.py +++ b/src/soc/bus/tercel.py @@ -120,9 +120,9 @@ class Tercel(Elaboratable): # SPI region Wishbone bus signals i_wishbone_adr=spi_bus_adr, - i_wishbone_dat=bus.dat_w, + i_wishbone_dat_w=bus.dat_w, i_wishbone_sel=bus.sel, - o_wishbone_dat=bus.dat_r, + o_wishbone_dat_r=bus.dat_r, i_wishbone_we=bus.we, i_wishbone_stb=bus.stb, i_wishbone_cyc=bus.cyc, @@ -130,9 +130,9 @@ class Tercel(Elaboratable): # Configuration region Wishbone bus signals i_cfg_wishbone_adr=cfg_bus.adr, - i_cfg_wishbone_dat=cfg_bus.dat_w, + i_cfg_wishbone_dat_w=cfg_bus.dat_w, i_cfg_wishbone_sel=cfg_bus.sel, - o_cfg_wishbone_dat=cfg_bus.dat_r, + o_cfg_wishbone_dat_r=cfg_bus.dat_r, i_cfg_wishbone_we=cfg_bus.we, i_cfg_wishbone_stb=cfg_bus.stb, i_cfg_wishbone_cyc=cfg_bus.cyc,