摘要: 设计思路: 设计代码: RTL: module led_flash( clk,rst_n,led ); input clk,rst_n; output reg led=0; parameter max=24999999; //(计数的最大值) reg [24:0] cnt=0; always@(po 阅读全文
posted @ 2024-04-02 13:16 xuxuxu69 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 译码器作用:将三位的输入信号译码为8位的输出信号 特别注意这里的真值表!!! 同一时刻只有一个信号是高电平,其余为低电平 工程代码: module decoder_3_8( a,b,c,out ); input a,b,c; output reg [7:0]out; always@(a,b,c) b 阅读全文
posted @ 2024-04-02 00:44 xuxuxu69 阅读(84) 评论(1) 推荐(0) 编辑