Minor cleanup

This commit is contained in:
2020-08-06 22:48:07 +02:00
parent 7dc7f2765f
commit 0d4b733da6
4 changed files with 5 additions and 8 deletions
+2 -5
View File
@@ -14,16 +14,13 @@ class Blinker(Elaboratable):
counter = Signal(range(self.maxperiod + 1))
with m.If(counter == 0):
m.d.sync += [
led.eq(~led),
counter.eq(self.maxperiod)
]
m.d.sync += led.eq(~led)
m.d.sync += counter.eq(self.maxperiod)
with m.Else():
m.d.sync += counter.eq(counter - 1)
return m
if __name__ == "__main__":
plat = ICEBreakerPlatform()
#main(plat, ports=[plat.led])