proc_debug : process
begin
wait until rising_edge(clk_rd);
- state_qq(i) <= state_q(i);
+ --state_qq(i) <= state_q(i);
counter_q(i) <= counter(i);
DEBUG(i * 32 + 31 downto i * 32 + 4) <= std_logic_vector(counter_q(i));
case state_qq(i) is
end process;
statebits <= std_logic_vector(to_unsigned(state_t'pos(state), 8)) when rising_edge(CLK_SYS);
- statebits_adc <= statebits when rising_edge(CLK_ADC);
+ --statebits_adc <= statebits when rising_edge(CLK_ADC);
PROC_DEBUG_BUFFER : process
variable c : integer range 0 to 3;