diff options
Diffstat (limited to 'techlibs/cmos/counter.v')
-rw-r--r-- | techlibs/cmos/counter.v | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/techlibs/cmos/counter.v b/techlibs/cmos/counter.v index 72208bd80..68b5c05b6 100644 --- a/techlibs/cmos/counter.v +++ b/techlibs/cmos/counter.v @@ -1,12 +1,12 @@ module counter (clk, rst, en, count); input clk, rst, en; - output reg [3:0] count; + output reg [2:0] count; always @(posedge clk) if (rst) - count <= 4'd0; + count <= 3'd0; else if (en) - count <= count + 4'd1; + count <= count + 3'd1; endmodule |