From dbc9141b6f36785bf53659915a6c916f33630f3f Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 22 Sep 2020 16:29:14 +0100 Subject: [PATCH] add (dummy) src_loc_at parameter --- nmigen_soc/wishbone/bus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nmigen_soc/wishbone/bus.py b/nmigen_soc/wishbone/bus.py index 013ef7e..77d69c4 100644 --- a/nmigen_soc/wishbone/bus.py +++ b/nmigen_soc/wishbone/bus.py @@ -110,7 +110,7 @@ class Interface(Record): def __init__(self, *, addr_width, data_width, granularity=None, features=None, - alignment=0, name=None): + alignment=0, name=None, src_loc_at=0): if features is None: features = frozenset() if not isinstance(addr_width, int) or addr_width < 0: -- 2.30.2