Skip to content

Instantly share code, notes, and snippets.

@jz5
Created December 3, 2013 03:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jz5/7763282 to your computer and use it in GitHub Desktop.
Save jz5/7763282 to your computer and use it in GitHub Desktop.
counter enable
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
enable <= 1'b0;
end
else if (start) begin
enable <= 1'b1;
end
else if (finish) begin
enable <= 1'b0;
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment