Forum Discussion
Altera_Forum
Honored Contributor
13 years agoThanks very much, David.
Sometimes I use combinational logic to make an enable or reset signal for IP core in FPGA, like: assign enable=a&&b; assign reset = c||d; then enable and reset will connect to IP core's enable and reset pin. However, since glitch the IP core may be enabled or reseted in unexpected time. So I use a ff to overcome this: always @(posedge clk) begin enable1<=enable; reset1<=reset; end In this typical case, besides add a flip-flop, another other approach can solve the problem? Thanks!