Skip to content

Commit

Permalink
examples.por: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
peteut authored and whitequark committed Mar 12, 2019
1 parent 4027317 commit d69a4e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/por.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
m.d.por += delay.eq(delay - 1)
m.d.comb += [
ClockSignal().eq(cd_por.clk),
ResetSignal().eq(delay == 0),
ResetSignal().eq(delay != 0),
]

if __name__ == "__main__":
Expand Down

0 comments on commit d69a4e2

Please sign in to comment.