mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
9 lines
338 B
Python
9 lines
338 B
Python
from migen.fhdl.std import *
|
|
|
|
from misoclib.com.liteusb.common import *
|
|
from misoclib.tools.wishbone import WishboneStreamingBridge
|
|
|
|
class LiteUSBWishboneBridge(WishboneStreamingBridge):
|
|
def __init__(self, port, clk_freq):
|
|
WishboneStreamingBridge.__init__(self, port, clk_freq)
|
|
self.comb += port.sink.dst.eq(port.tag)
|