Forum Discussion
Altera_Forum
Honored Contributor
11 years agoput some debug asserts in your code:
process(nDB_BUF_EN)
begin
if rising_edge(nDB_BUF_EN) then
report "a Rising edge on nDB_BUF_EN just occured"
severity Failure; --or note or warning or error if you want simulation to continue
end if;
end process;