summaryrefslogtreecommitdiff
path: root/techlibs/cmos/counter.v
diff options
context:
space:
mode:
Diffstat (limited to 'techlibs/cmos/counter.v')
-rw-r--r--techlibs/cmos/counter.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/techlibs/cmos/counter.v b/techlibs/cmos/counter.v
index 72208bd8..68b5c05b 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