Skip to content
Snippets Groups Projects
Unverified Commit 552fe8b6 authored by Byron Lathi's avatar Byron Lathi
Browse files

Have valid crc when valid signal is present

Previously the crc would be reset after 1 clock cycle while the valid
signal was still high. Now the data is preserved in the valid state
until the load signal is asserted.
parent 3e691094
No related branches found
No related tags found
Loading
......@@ -95,6 +95,7 @@ always_comb begin
VALID: begin
valid = ~load;
next_data = data;
crc_out = data[6:0];
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment