📄 demux.v
字号:
//// Verilog Module dwt_final_lib.demux.arch_name//// Created:// by - VLSI4.UNKNOWN (VLSI04)// at - 15:34:21 05/04/2008//// using Mentor Graphics HDL Designer(TM) 2004.1b (Build 12)//`resetall`timescale 1ns/10psmodule demux(in,out1,out2,select); input [23:0] in; input select; output [23:0] out1,out2; reg [23:0] out1,out2; always@(in or select) begin case(select) 1'b0: out1<=in; 1'b1: out2<=in; endcase end // ### Please start your Verilog code here ###endmodule
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -