Forum Discussion

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

how to generate a reset signal in Altera Cyclone Ⅳ series?

Verilog: input reset; reg counting; always@(posedge clk or negedge reset) begin if(!reset) counting <= 11'd0; end reset signal is connect to “M1” pin. is it counting =...