mux_2.v

来自「it is used to find traffic」· Verilog 代码 · 共 28 行

V
28
字号
//// Verilog Module dwt2_lib.MUX_2.arch_name//// Created://          by - VLSI4.UNKNOWN (VLSI04)//          at - 11:06:34 03/28/2008//// using Mentor Graphics HDL Designer(TM) 2004.1b (Build 12)//`resetall`timescale 1ns/10psmodule MUX_2(in1,in2,select,out) ;  input [23:0] in1,in2;  input select;  output [23:0] out;    reg [23:0] out;    always@(in1 or in2 or select)  begin    case(select)      1'b0: out<=in1;      1'b1: out<=in2;    endcase  end  // ### Please start your Verilog code here ###endmodule

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?