muxf5.v

来自「PacoBlaze is a from-scratch synthesizabl」· Verilog 代码 · 共 37 行

V
37
字号
// $Header: /devl/xcs/repo/env/Databases/CAEInterfaces/verunilibs/data/unisims/MUXF5.v,v 1.8 2005/03/14 22:32:55 yanx Exp $///////////////////////////////////////////////////////////////////////////////// Copyright (c) 1995/2004 Xilinx, Inc.// All Right Reserved./////////////////////////////////////////////////////////////////////////////////   ____  ____//  /   /\/   /// /___/  \  /    Vendor : Xilinx// \   \   \/     Version : 8.1i (I.13)//  \   \         Description : Xilinx Functional Simulation Library Component//  /   /                  2-to-1 Lookup Table Multiplexer with General Output// /___/   /\     Filename : MUXF5.v// \   \  /  \    Timestamp : Thu Mar 25 16:42:55 PST 2004//  \___\/\___\//// Revision://    03/23/04 - Initial version.//    02/04/05 - Rev 0.0.1 Remove input/output bufs; Remove unnessasary begin/end;// End Revision`timescale  100 ps / 10 psmodule MUXF5 (O, I0, I1, S);    output O;    reg    O;    input  I0, I1, S;	always @(I0 or I1 or S)	    if (S)		O <= I1;	    else		O <= I0;endmodule

⌨️ 快捷键说明

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