mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
targets/mlabs_video: use new Cat syntax
This commit is contained in:
parent
440b7d5170
commit
65f3c1ddff
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ class MiniSoC(SDRAMSoC):
|
|||
self.submodules.leds = gpio.GPIOOut(platform.request("user_led"))
|
||||
if platform.name == "m1":
|
||||
self.submodules.buttons = gpio.GPIOIn(Cat(platform.request("user_btn", 0), platform.request("user_btn", 2)))
|
||||
self.submodules.leds = gpio.GPIOOut(Cat(*[platform.request("user_led", i) for i in range(2)]))
|
||||
self.submodules.leds = gpio.GPIOOut(Cat(platform.request("user_led", i) for i in range(2)))
|
||||
|
||||
# Clock glue
|
||||
self.comb += [
|
||||
|
|
Loading…
Reference in a new issue