Skip to content

Commit

Permalink
dac: fix frame width, closes #9
Browse files Browse the repository at this point in the history
  • Loading branch information
jordens committed Jul 6, 2017
1 parent 2af593a commit bbc9288
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gateware/dac.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def __init__(self, mem_depth=4*(1 << 10)): # XC3S500E: 20x18bx1024
self.source = Endpoint(line_layout)
self.arm = Signal()
self.start = Signal()
self.frame = Signal(3)
self.frame = Signal(max=32)

###

Expand Down

0 comments on commit bbc9288

Please sign in to comment.