Skip to content

Commit

Permalink
uart: pass *args, **kwargs to sim phy
Browse files Browse the repository at this point in the history
enjoy-digital committed Mar 6, 2015
1 parent af66ca7 commit d20b9c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misoclib/com/uart/phy/sim.py
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
from migen.flow.actor import Sink, Source

class UARTPHYSim(Module):
def __init__(self, pads):
def __init__(self, pads, *args, **kwargs):
self.sink = Sink([("data", 8)])
self.source = Source([("data", 8)])

0 comments on commit d20b9c2

Please sign in to comment.