我是靠谱客的博主 敏感戒指,这篇文章主要介绍Verilog 刷题-Count clock,现在分享给大家,希望可以做个参考。

先附上代码 有空再补思路,自己写的很乱。

复制代码
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
module top_module( input clk, input reset, input ena, output pm, output [7:0] hh, output [7:0] mm, output [7:0] ss); reg m0,m1,m2,h0,h1,h2,s0,s1,a1; assign s0 = (ss[3:0]==9)?1:0; assign s1 = (ss[7:4]==5&s0)?1:0; assign m0 = (ss[3:0]==9&ss[7:4]==5)?1:0; assign m1 = (m0&mm[3:0]==9)?1:0; assign m2 = (m0&mm[3:0]==9&mm[7:4]==5)?1:0; assign h0 = m2; assign h1 = (h0&hh[3:0]==9)?1:0; assign h2 = (h0&hh[7:4]==1&hh[3:0]==2)?1:0; assign a1 = (h0&hh[3:0]==1&hh[7:4]==1)?1:0; always@(posedge clk)begin if(reset==1)pm = 0; else if(a1==1) pm=~pm; end /* bdcss s1(clk,reset,ena,[7:0]ss); bdcmm m2(clk,reset,ena,[7:0]mm); bdchh h3(clk,reset,ena,[7:0]hh); */ always@(posedge clk)begin if(reset) ss[3:0]<=4'b0000; else if(ena==0) ss[3:0]<=ss[3:0]; else if(s0) ss[3:0]<=4'b0000; else ss[3:0]<=ss[3:0]+8'b0001; end always@(posedge clk)begin if(reset) ss[7:4]<=4'b0000; else if(ena==0) ss[7:4]<=ss[7:4]; else if(s1) ss[7:4]<=4'b0000; else if(s0)ss[7:4]<=ss[7:4]+8'b0001; end always@(posedge clk)begin if(reset) mm[3:0]<=4'b0000; else if(ena==0)mm[3:0]<=mm[3:0]; else if(m1) mm[3:0]<=4'b0000; else if(m0) mm[3:0]<=mm[3:0]+8'b0001; end always@(posedge clk)begin if(reset) mm[7:4]<=4'b0000; else if(ena==0)mm[7:4]<=mm[7:4]; else if(m2) mm[7:4]<=4'b0000; else if(m1) mm[7:4]<=mm[7:4]+8'b0001; end always@(posedge clk)begin if(reset) hh[3:0]<=4'b0010; else if(ena==0)hh[3:0]<=hh[3:0]; else if(h1) hh[3:0]<=4'b0000; else if(h2) hh[3:0]<=4'b0001; else if(h0) hh[3:0]<=hh[3:0]+4'b0001; end always@(posedge clk)begin if(reset) hh[7:4]<=4'b0001; else if(ena==0)hh[7:4]<=hh[7:4]; else if(h2) hh[7:4]<=4'b0000; else if(h1) hh[7:4]<=hh[7:4]+4'b0001; end endmodule

最后

以上就是敏感戒指最近收集整理的关于Verilog 刷题-Count clock的全部内容,更多相关Verilog内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部