Forum Discussion

Altera_Forum's avatar
Altera_Forum
Icon for Honored Contributor rankHonored Contributor
14 years ago

dff with async reset and set got warning of latches on FPGA 3C5

A very simple dff with async reset and preset got warining of latches if I use FPGA 3C5. module dff(reset, set,clk,d,q); input reset,set,clk,d; output q; reg q; always@(posedge clk or ...