1 Star 0 Fork 0

打野/Verilog练习代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
practice_24.2.20.v 883 Bytes
一键复制 编辑 原始数据 按行查看 历史
打野 提交于 2024-02-20 23:57 . correct
//2024-2-20 姜青羊
//日常练习
`timescale 1ns/10ps
module fn_sw (
A,
B,
sel,
Y
);
input A,B;
input[1:0] sel;
output Y;
reg Y;
always @(A or B or sel) begin
case(sel)
00: Y = A&B;
00: Y = A|B;
00: Y = A^B;
00: Y = ~(A^B);
endcase
end
endmodule
//----testbench------
module tb_fn_sw ();
reg[3:0] sab;
wire y;
fn_sw u_fn_sw (
.A(sab[0]),
.B(sab[1]),
.sel(sab[3:2]),
.Y(y)
);
initial begin
sab<=0000;
#2000 $stop;
end
always #10 sab<=sab+1;
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

搜索帮助