Skip to content

Commit

Permalink
cores/liteeth_mini/mac/crc: fix crc_error generation
Browse files Browse the repository at this point in the history
enjoy-digital committed Nov 1, 2017
1 parent 72faa2c commit 1ac1d7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misoc/cores/liteeth_mini/mac/crc.py
Original file line number Diff line number Diff line change
@@ -257,7 +257,7 @@ def __init__(self, crc_class, layout):
source.payload.eq(fifo.source.payload),

source.error.eq(sink.error | crc.error),
self.crc_error.eq(sink.eop & crc.error),
self.crc_error.eq(source.stb & source.eop & crc.error),
]

fsm.act("RESET",

0 comments on commit 1ac1d7d

Please sign in to comment.