projects
/
gram.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
814e70f
)
Fix code styling
author
Jean THOMAS
<git0@pub.jeanthomas.me>
Fri, 24 Jul 2020 12:40:26 +0000
(14:40 +0200)
committer
Jean THOMAS
<git0@pub.jeanthomas.me>
Fri, 24 Jul 2020 12:40:26 +0000
(14:40 +0200)
gram/core/multiplexer.py
patch
|
blob
|
history
diff --git
a/gram/core/multiplexer.py
b/gram/core/multiplexer.py
index 789a07b9d1413b2ca33ed38a09d86a7ef22d979b..fb77430021046ad8480b0052f86cc0e8a79667b3 100644
(file)
--- a/
gram/core/multiplexer.py
+++ b/
gram/core/multiplexer.py
@@
-225,9
+225,7
@@
class _AntiStarvation(Elaboratable):
self.max_time.eq(0),
]
with m.Elif(time != 0):
- m.d.sync += [
- time.eq(time-1)
- ]
+ m.d.sync += time.eq(time-1)
with m.If(time == 1):
m.d.sync += self.max_time.eq(1)
with m.Else():