From f4871b9f130371e26fdc5eb058d97970c73dcda1 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Wed, 13 May 2020 14:50:06 +0200 Subject: [PATCH] litedram_gen: use default settings on wb_bus. --- litedram/gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litedram/gen.py b/litedram/gen.py index 551f3cf..95f285d 100755 --- a/litedram/gen.py +++ b/litedram/gen.py @@ -376,7 +376,7 @@ class LiteDRAMCore(SoCCore): self.comb += platform.request("init_error").eq(self.ddrctrl.init_error.storage) # If no CPU, expose a bus control interface to user. if cpu_type is None: - wb_bus = wishbone.Interface(self.bus.address_width) + wb_bus = wishbone.Interface() self.bus.add_master(master=wb_bus) platform.add_extension(wb_bus.get_ios("wb_ctrl")) wb_pads = platform.request("wb_ctrl")