We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d631f8c commit bc4d26cCopy full SHA for bc4d26c
answers/e03_cell3x3.py
@@ -20,7 +20,7 @@ def elaborate(self, _: Platform) -> Module:
20
"""Implements the logic for the Cell3x3 module."""
21
m = Module()
22
23
- neighbors = Signal(range(8))
+ neighbors = Signal(range(9))
24
c = self.input
25
m.d.comb += neighbors.eq(c[0] + c[1] + c[2] +
26
c[3] + c[5] +
0 commit comments