【笔记】12-hour clock

module top_module(
input clk,
input reset,
input ena,
output pm,
output [7:0] hh,
output [7:0] mm,
output [7:0] ss);

reg [3:0] s1; //秒针个位
reg [3:0] s2; //秒针十位

always@(posedge clk)begin
if(reset)begin
s1 <= 4'd0; end else if(ena)begin if(s1==4'd9)begin s1 <= 4'd0; end else begin s1 <= s1 +

【笔记】12-hour clock最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/28802.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>