2023年2月10日
摘要: 1 //单个LED灯以一秒闪烁的源代码 2 //利用单个的闪烁源代码,来实例化不同频率闪烁的灯 3 module led_run8( 4 clk, 5 reset_n, 6 led 7 ); 8 input clk; 9 input reset_n; 10 output reg led; 11 re 阅读全文
posted @ 2023-02-10 22:50 无情的造轮子 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1 //跑马灯(三种不同的写法)源代码 2 module led_run_p( 3 clk, 4 reset_n, 5 led 6 ); 7 input clk; 8 input reset_n; 9 // output reg [7:0] led;//前面两次跑马灯写法所用的语句 10 outpu 阅读全文
posted @ 2023-02-10 15:41 无情的造轮子 阅读(250) 评论(0) 推荐(0) 编辑