-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeCounter.v
53 lines (44 loc) · 1.07 KB
/
timeCounter.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
module timeCounter (
input clk, rstN, startN, stop,
output [25:0]timeDuration
);
localparam idle = 2'b0,
counting = 2'b1,
countEnd = 2'd2;
reg [25:0]currentTime, nextTime;
reg [1:0]currentState, nextState;
always @(posedge clk or negedge rstN) begin
if (~rstN) begin
currentTime <= 26'b0;
currentState <= idle;
end
else begin
currentTime <= nextTime;
currentState <= nextState;
end
end
always @( *) begin
nextTime = currentTime;
nextState = currentState;
case (currentState)
idle: begin
nextTime = 26'b0;
if (~startN) begin
nextState = counting;
end
end
counting: begin
if (stop)begin
nextState = countEnd;
end
else begin
nextTime = currentTime + 26'b1;
end
end
countEnd: begin
//wait until reset (keep the same count)
end
endcase
end
assign timeDuration = currentTime;
endmodule //timeCounter