mirror of
https://github.com/supleed2/EIE4-FYP.git
synced 2024-12-22 14:15:50 +00:00
Signal prefixes are removed by migen, so double
This commit is contained in:
parent
740316a47f
commit
52eb0bdaf7
11
testLED.py
11
testLED.py
|
@ -9,12 +9,15 @@ class TestLed(Module, AutoCSR):
|
|||
def __init__(self, platform, pads):
|
||||
self.pads = pads
|
||||
leds = Signal(3)
|
||||
|
||||
# # #
|
||||
|
||||
self.comb += pads.eq(leds)
|
||||
self.specials += Instance("flip",
|
||||
i_clk = ClockSignal(),
|
||||
o_ledr = leds[0],
|
||||
o_ledg = leds[1],
|
||||
o_ledb = leds[2]
|
||||
i_i_clk = ClockSignal("dac"),
|
||||
o_o_ledr = leds[0],
|
||||
o_o_ledg = leds[1],
|
||||
o_o_ledb = leds[2]
|
||||
)
|
||||
platform.add_source("rtl/flip.sv")
|
||||
|
||||
|
|
Loading…
Reference in a new issue