xorcy.v
来自「和picoblaze完全兼容的mcu ip core」· Verilog 代码 · 共 34 行
V
34 行
// $Header: /devl/xcs/repo/env/Databases/CAEInterfaces/verunilibs/data/unisims/XORCY.v,v 1.5 2005/03/14 22:32:58 yanx Exp $///////////////////////////////////////////////////////////////////////////////// Copyright (c) 1995/2004 Xilinx, Inc.// All Right Reserved.///////////////////////////////////////////////////////////////////////////////// ____ ____// / /\/ /// /___/ \ / Vendor : Xilinx// \ \ \/ Version : 8.1i (I.13)// \ \ Description : Xilinx Functional Simulation Library Component// / / XOR for Carry Logic with General Output// /___/ /\ Filename : XORCY.v// \ \ / \ Timestamp : Thu Mar 25 16:43:42 PST 2004// \___\/\___\//// Revision:// 03/23/04 - Initial version.// End Revision`timescale 100 ps / 10 psmodule XORCY (O, CI, LI); output O; input CI, LI; xor X1 (O, CI, LI);endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?