inv.v
来自「PacoBlaze is a from-scratch synthesizabl」· Verilog 代码 · 共 33 行
V
33 行
// $Header: /devl/xcs/repo/env/Databases/CAEInterfaces/verunilibs/data/unisims/INV.v,v 1.5 2005/03/14 22:32:53 yanx Exp $///////////////////////////////////////////////////////////////////////////////// Copyright (c) 1995/2004 Xilinx, Inc.// All Right Reserved.///////////////////////////////////////////////////////////////////////////////// ____ ____// / /\/ /// /___/ \ / Vendor : Xilinx// \ \ \/ Version : 8.1i (I.13)// \ \ Description : Xilinx Functional Simulation Library Component// / / Inverter// /___/ /\ Filename : INV.v// \ \ / \ Timestamp : Thu Mar 25 16:42:37 PST 2004// \___\/\___\//// Revision:// 03/23/04 - Initial version.// End Revision`timescale 100 ps / 10 psmodule INV (O, I); output O; input I; not N1 (O, I);endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?