projects
/
nmigen-soc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9762a3c
)
add (dummy) src_loc_at parameter
author
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Tue, 22 Sep 2020 15:29:14 +0000
(16:29 +0100)
committer
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Tue, 22 Sep 2020 15:29:14 +0000
(16:29 +0100)
nmigen_soc/wishbone/bus.py
patch
|
blob
|
history
diff --git
a/nmigen_soc/wishbone/bus.py
b/nmigen_soc/wishbone/bus.py
index 013ef7e2374a6481472d395c6c67eba71bf2958d..77d69c497f354bbcec7280f5aa7971b88b89afed 100644
(file)
--- 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: