twomuxs.v
来自「Verilog 编写的fir滤波器」· Verilog 代码 · 共 7 行
V
7 行
module twomuxs(a,b,sel,out);
output out;
input a,b,sel;
not(sel_,sel);
and(a1,a,sel_),(a2,b,sel);
or(out,a1,a2);
endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?