Skip to content

Commit d20b9c2

Browse files
committedMar 6, 2015
uart: pass *args, **kwargs to sim phy
1 parent af66ca7 commit d20b9c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎misoclib/com/uart/phy/sim.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from migen.flow.actor import Sink, Source
33

44
class UARTPHYSim(Module):
5-
def __init__(self, pads):
5+
def __init__(self, pads, *args, **kwargs):
66
self.sink = Sink([("data", 8)])
77
self.source = Source([("data", 8)])
88

0 commit comments

Comments
 (0)
Please sign in to comment.