Skip to content
Snippets Groups Projects
Commit 4df8a753 authored by Tomasz Wlostowski's avatar Tomasz Wlostowski
Browse files

wr_endpoint: ep_sync_detect_16bit: fixed comb invalid_code generation

parent 075b9d77
Branches
Tags
No related merge requests found
......@@ -81,7 +81,7 @@ begin -- behavioral
valid_idle <= '1' when (k_i = "10" and data_i(15 downto 8) = c_k28_5 and err_i = '0') else '0';
invalid_code <= '1' when (err_i = '1' or (k_i(0) = '1' and data_i(7 downto 0) = c_k28_5));
invalid_code <= '1' when (err_i = '1' or (k_i(0) = '1' and data_i(7 downto 0) = c_k28_5)) else '0';
sync_fsm : process (rbclk_i, rst_n_i)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment