Skip to content

Instantly share code, notes, and snippets.

@jz5
Created December 3, 2013 03:07
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/7763279 to your computer and use it in GitHub Desktop.
Save jz5/7763279 to your computer and use it in GitHub Desktop.
counter 2
reg enable;
always @(posedge clk or negedge rst_n) begin
if (~rst_n) begin
count <= max_count;
end
else if (enable) begin // enable = 1'b1 の時のみカウント動作
else if (count == 0) begin
count <= max_count;
end
else begin
count <= count - 1;
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment