1 Star 0 Fork 0

打野/Verilog练习代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nand_gate_4bits(review) (2).v 785 Bytes
一键复制 编辑 原始数据 按行查看 历史
打野 提交于 2023-09-26 21:32 . 2023-9-26
//2023-9-20 ()
//4λţnand_gate_4bits
`timescale 1ns/10ps
module n_g_4 (
A,
B,
Y
);
input[3:0] A,B;
output[3:0] Y;
assign Y=~(A&B);
endmodule
//------testbench-----
module tb_n_g_4 ();
reg[3:0] a,b;
wire[3:0] y;
initial begin
a<=4'b0000 ; b<=4'b0000 ;
#10 a<=4'b0000 ; b<=4'b0001 ;
#10 a<=4'b0000 ; b<=4'b0011 ;
#10 a<=4'b1111 ; b<=4'b0000 ;
#10 a<=4'b1111 ; b<=4'b0001 ;
#10 a<=4'b1111 ; b<=4'b0011 ;
end
n_g_4 u_n_g_4 (
.A(a),
.B(b),
.Y(y)
);
endmodule
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fight_wild/verilog-code.git
git@gitee.com:fight_wild/verilog-code.git
fight_wild
verilog-code
Verilog练习代码
master

搜索帮助