Commit d4b31206 authored by Dimitris Lampridis's avatar Dimitris Lampridis

hdl: fix wrong polarity of TDC rst in reg_ctrl

parent 01673524
...@@ -423,7 +423,7 @@ begin ...@@ -423,7 +423,7 @@ begin
process (clk_tdc_i) process (clk_tdc_i)
begin begin
if rising_edge (clk_tdc_i) then if rising_edge (clk_tdc_i) then
if rst_tdc_i = '1' then if rst_tdc_n_i = '1' then
ctrl_reg_d <= (others =>'0'); ctrl_reg_d <= (others =>'0');
else else
ctrl_reg_d <= ctrl_reg; ctrl_reg_d <= ctrl_reg;
......
Markdown is supported
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