2023年2月8日
摘要: 1 //4—16译码器源代码 2 module decoder_4_16( 3 a, 4 b, 5 c, 6 d, 7 out 8 ); 9 input a; 10 input b; 11 input c; 12 input d; 13 output reg [15:0] out; 14 alway 阅读全文
posted @ 2023-02-08 17:57 无情的造轮子 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 1 //3—8译码器源代码 2 module decoder_3_8( 3 a, 4 b, 5 c, 6 out 7 ); 8 input a; 9 input b; 10 input c; 11 output reg [7:0] out; 12 always @(*) begin 13 case( 阅读全文
posted @ 2023-02-08 17:53 无情的造轮子 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1 //二选一多路选择器源代码 2 //此代码注意括号内部运用的是逗号,括号内部最后一个不加逗号。 3 //括号外面的语句都要加分号(;) 4 module mux2( 5 a, 6 b, 7 sel, 8 out 9 ); 10 input a; 11 input b; 12 input sel; 阅读全文
posted @ 2023-02-08 17:49 无情的造轮子 阅读(166) 评论(0) 推荐(0) 编辑