Skip to content

Commit

Permalink
correctly use result of Record.connect in Converter (#81)
Browse files Browse the repository at this point in the history
fixes issue #80
  • Loading branch information
tpwrules authored and jordens committed Jun 10, 2018
1 parent 0b97829 commit 1325aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misoc/interconnect/wishbone.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ def __init__(self, master, slave):
upconverter = UpConverter(master, slave)
self.submodules += upconverter
else:
master.connect(slave)
self.comb += master.connect(slave)


class Cache(Module):
Expand Down

0 comments on commit 1325aff

Please sign in to comment.