亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? virtex2.vhd

?? Xilinx ISE 官方源代碼盤第八章
?? VHD
?? 第 1 頁 / 共 5 頁
字號(hào):
--This file is for Synplify/Synplify Pro to declare the Xilinx Virtex2 primitives as black box.
library IEEE;
use IEEE.std_logic_1164.all;
library synplify;
use synplify.attributes.all;
entity PULLUP is
 port (
   O : out std_logic
 );
 attribute syn_not_a_driver : boolean;
 attribute syn_not_a_driver of O : signal is true;
end entity PULLUP;

architecture bb of PULLUP is
attribute syn_black_box of bb : architecture is true;
attribute syn_noprune of bb : architecture is true;
begin
end architecture bb;

library ieee;
use ieee.std_logic_1164.all;
library synplify;
use synplify.attributes.all;
entity PULLDOWN is
 port (
   O : out std_logic
 );
 attribute syn_not_a_driver : boolean;
 attribute syn_not_a_driver of O : signal is true;
end entity PULLDOWN;

architecture bb of PULLDOWN is
attribute syn_black_box of bb : architecture is true;
attribute syn_noprune of bb : architecture is true;
begin
end architecture bb;

library ieee;
use ieee.std_logic_1164.all;
library synplify;
use synplify.attributes.all;
entity LUT1 is
 generic (INIT : bit_vector(1 downto 0));
 port (
   O : out std_logic;
   I0 : in std_logic
 );
end entity LUT1;

architecture lut of LUT1 is
attribute xc_map of lut : architecture is "lut";
begin
O <= To_StdULogic(INIT(1)) when I0 = '1' else To_StdULogic(INIT(0));
end architecture lut;

library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
library synplify;
use synplify.attributes.all;
entity LUT2 is
 generic (INIT : bit_vector(3 downto 0));
 port (
   O : out std_logic;
  I0 : in std_logic;
  I1 : in std_logic
 );
end entity LUT2;

architecture lut of LUT2 is
attribute xc_map of lut : architecture is "lut";
signal b : std_logic_vector(1 downto 0);
signal tmp : integer range 0 to 7;
begin
   b <= (I1, I0);
   tmp <= conv_integer(b);
   O <= To_StdULogic(INIT(tmp));
end architecture lut;

library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
library synplify;
use synplify.attributes.all;
entity LUT3 is
 generic (INIT : bit_vector(7 downto 0));
 port (
   O : out std_logic;
  I0 : in std_logic;
  I1 : in std_logic;
  I2 : in std_logic
 );
end entity LUT3;

architecture lut of LUT3 is
attribute xc_map of lut : architecture is "lut";
signal b : std_logic_vector(2 downto 0);
signal tmp : integer range 0 to 7;
begin
   b <= (I2, I1, I0);
   tmp <= conv_integer(b);
   O <= To_StdULogic(INIT(tmp));
end architecture lut;

library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
library synplify;
use synplify.attributes.all;
entity LUT4 is
 generic (INIT : bit_vector(15 downto 0));
 port (
   O : out std_logic;
  I0 : in std_logic;
  I1 : in std_logic;
  I2 : in std_logic;
  I3 : in std_logic
  );
end entity LUT4;

architecture lut of LUT4 is
attribute xc_map of lut : architecture is "lut";
signal b : std_logic_vector(3 downto 0);
signal tmp : integer range 0 to 15;
begin
  b <= (I3, I2, I1, I0);
  tmp <= conv_integer(b);
  O <= To_StdUlogic(INIT(tmp));
end architecture lut;

library ieee;
use ieee.std_logic_1164.all;
library synplify;
use synplify.attributes.all;
package components is
   attribute syn_black_box of components : package is true;
   attribute syn_noprune : boolean;
component BSCAN_VIRTEX2
 port (
   TDO1 : in std_logic;
   TDO2 : in std_logic;
   CAPTURE : out std_logic;
   DRCK1 : out std_logic;
   DRCK2 : out std_logic;
   RESET : out std_logic;
   SEL1 : out std_logic;
   SEL2 : out std_logic;
   SHIFT : out std_logic;
   TDI : out std_logic;
   UPDATE : out std_logic
 );
end component;
attribute syn_black_box of BSCAN_VIRTEX2 : component is true;
component BUF
 port (
   O : out std_logic;
   I : in std_logic
 );
end component;
attribute syn_black_box of BUF : component is true;
component BUFCF
 port (
   O : out std_logic;
   I : in std_logic
 );
end component;
attribute syn_black_box of BUFCF : component is true;
component BUFE
 port (
   O : out std_logic;
   E : in std_logic;
   I : in std_logic
 );
end component;
attribute syn_black_box of BUFE : component is true;
attribute black_box_tri_pins of BUFE : component is "O";
component BUFG
 port (
   O : out std_logic;
   I : in std_logic
 );
end component;
attribute syn_black_box of BUFG : component is true;
component BUFGDLL
 port (
   O : out std_logic;
   I : in std_logic
 );
end component;
attribute syn_black_box of BUFGDLL : component is true;
component BUFGCE
 port (
   O  : out std_logic;
   CE : in std_logic;
   I  : in std_logic
 );
end component;
attribute syn_black_box of BUFGCE : component is true;
component BUFGCE_1
 port (
   O  : out std_logic;
   CE : in std_logic;
   I  : in std_logic
 );
end component;
attribute syn_black_box of BUFGCE_1 : component is true;
component BUFGMUX
 port (
   O  : out std_logic;
   I0 : in std_logic;
   I1 : in std_logic;
   S  : in std_logic
 );
end component;
attribute syn_black_box of BUFGMUX : component is true;
component BUFGMUX_1
 port (
   O  : out std_logic;
   I0 : in std_logic;
   I1 : in std_logic;
   S  : in std_logic
 );
end component;
attribute syn_black_box of BUFGMUX_1 : component is true;
component BUFGP
 port (
   O : out std_logic;
   I : in std_logic
 );
end component;
attribute syn_black_box of BUFGP : component is true;
component BUFT
 port (
   O : out std_logic;
   I : in std_logic;
   T : in std_logic
 );
end component;
attribute syn_black_box of BUFT : component is true;
attribute black_box_tri_pins of BUFT : component is "O";
component CAPTURE_VIRTEX2
 port (
   CAP : in std_logic;
   CLK : in std_logic
 );
end component;
attribute syn_black_box of CAPTURE_VIRTEX2 : component is true;
attribute syn_noprune of CAPTURE_VIRTEX2 : component is true;
component CLKDLL
 port (
   CLK0 : out std_logic;
   CLK90 : out std_logic;
   CLK180 : out std_logic;
   CLK270 : out std_logic;
   CLK2X : out std_logic;
   CLKDV : out std_logic;
   LOCKED : out std_logic;
   CLKIN : in std_logic;
   CLKFB : in std_logic;
   RST : in std_logic
 );
end component;
attribute syn_black_box of CLKDLL : component is true;
component CLKDLLE
 port (
   CLK0 : out std_logic;
   CLK90 : out std_logic;
   CLK180 : out std_logic;
   CLK270 : out std_logic;
   CLK2X : out std_logic;
   CLK2X180 : out std_logic;
   CLKDV : out std_logic;
   LOCKED : out std_logic;
   CLKIN : in std_logic;
   CLKFB : in std_logic;
   RST : in std_logic
 );
end component;
attribute syn_black_box of CLKDLLE : component is true;
component CLKDLLHF
 port (
   CLK0 : out std_logic;
   CLK180 : out std_logic;
   CLKDV : out std_logic;
   LOCKED : out std_logic;
   CLKIN : in std_logic;
   CLKFB : in std_logic;
   RST : in std_logic
 );
end component;
attribute syn_black_box of CLKDLLHF : component is true;
component DCM
    generic (DFS_FREQUENCY_MODE : string := "LOW";
             DLL_FREQUENCY_MODE : string := "LOW";
             DUTY_CYCLE_CORRECTION : boolean := TRUE;
             CLKIN_DIVIDE_BY_2 : boolean := FALSE;
             CLK_FEEDBACK : string := "1X";
             CLKOUT_PHASE_SHIFT : string := "NONE";
             FACTORY_JF : bit_vector := X"00";
             STARTUP_WAIT : boolean := FALSE;
	     DSS_MODE	  : string := "NONE";
             PHASE_SHIFT  : integer := 0 ;
             CLKFX_MULTIPLY : integer  := 4 ;
	     CLKFX_DIVIDE : integer  := 1;
             CLKDV_DIVIDE : real := 2.0;
             DESKEW_ADJUST : string := "SYSTEM_SYNCHRONOUS"
             ); 
 port ( CLKIN : in std_logic;
	    CLKFB : in std_logic;
	    DSSEN : in std_logic;
	    PSINCDEC : in std_logic;
	    PSEN : in std_logic;
	    PSCLK : in std_logic;
	    RST : in std_logic;
	    CLK0 : out std_logic;
        CLK90 : out std_logic;
        CLK180 : out std_logic;
	    CLK270 : out std_logic;
        CLK2X : out std_logic;
        CLK2X180 : out std_logic;
	    CLKDV : out std_logic;
	    CLKFX : out std_logic;
	    CLKFX180 : out std_logic;
	    LOCKED : out std_logic;
	    PSDONE : out std_logic;
	    STATUS : out std_logic_vector(7 downto 0)
 );
end component;
attribute syn_black_box of DCM : component is true;
component FD
 port (
   Q : out std_logic;
   C : in std_logic;
   D : in std_logic
 );
end component;
attribute syn_black_box of FD : component is true;
component FDC
 port (
   Q : out std_logic;
   C : in std_logic;
   CLR : in std_logic;
   D : in std_logic
 );
end component;
attribute syn_black_box of FDC : component is true;
component FDCE
 port (
   Q : out std_logic;
   C : in std_logic;
   CE : in std_logic;
   CLR : in std_logic;
   D : in std_logic
 );
end component;
attribute syn_black_box of FDCE : component is true;
component FDCE_1
 port (
   Q : out std_logic;
   C : in std_logic;
   CE : in std_logic;
   CLR : in std_logic;
   D : in std_logic
 );
end component;
attribute syn_black_box of FDCE_1 : component is true;
component FDCP
 port (
   Q : out std_logic;
   C : in std_logic;
   CLR : in std_logic;
   D : in std_logic;
   PRE : in std_logic
 );
end component;
attribute syn_black_box of FDCP : component is true;
component FDCPE
 port (
   Q : out std_logic;
   C : in std_logic;
   CE : in std_logic;
   CLR : in std_logic;
   D : in std_logic;
   PRE : in std_logic
 );
end component;
attribute syn_black_box of FDCPE : component is true;
component FDCPE_1
 port (
   Q : out std_logic;
   C : in std_logic;
   CE : in std_logic;
   CLR : in std_logic;
   D : in std_logic;
   PRE : in std_logic
 );
end component;
attribute syn_black_box of FDCPE_1 : component is true;
component FDCP_1
 port (
   Q : out std_logic;
   C : in std_logic;
   CLR : in std_logic;
   D : in std_logic;
   PRE : in std_logic
 );
end component;
attribute syn_black_box of FDCP_1 : component is true;
component FDC_1
 port (
   Q : out std_logic;
   C : in std_logic;
   CLR : in std_logic;
   D : in std_logic
 );
end component;
attribute syn_black_box of FDC_1 : component is true;
component FDDRCPE
 port (
   Q : out std_logic;
   C0 : in std_logic;
   C1 : in std_logic;
   CE : in std_logic;
   CLR : in std_logic;
   D0 : in std_logic;
   D1 : in std_logic;
   PRE : in std_logic
 );
end component;
attribute syn_black_box of FDDRCPE : component is true;
component FDDRRSE
 port (
   Q : out std_logic;
   C0 : in std_logic;
   C1 : in std_logic;
   CE : in std_logic;
   D0 : in std_logic;
   D1 : in std_logic;
   R : in std_logic;
   S : in std_logic
 );
end component;
attribute syn_black_box of FDDRRSE : component is true;
component FDE
 port (
   Q : out std_logic;
   C : in std_logic;
   CE : in std_logic;
   D : in std_logic
 );
end component;
attribute syn_black_box of FDE : component is true;
component FDE_1
 port (
   Q : out std_logic;
   C : in std_logic;
   CE : in std_logic;
   D : in std_logic
 );
end component;
attribute syn_black_box of FDE_1 : component is true;
component FDP
 port (
   Q : out std_logic;
   C : in std_logic;
   D : in std_logic;
   PRE : in std_logic
 );
end component;
attribute syn_black_box of FDP : component is true;
component FDPE
 port (
   Q : out std_logic;
   C : in std_logic;
   CE : in std_logic;
   D : in std_logic;
   PRE : in std_logic
 );
end component;
attribute syn_black_box of FDPE : component is true;
component FDPE_1
 port (
   Q : out std_logic;
   C : in std_logic;
   CE : in std_logic;
   D : in std_logic;
   PRE : in std_logic
 );
end component;
attribute syn_black_box of FDPE_1 : component is true;
component FDP_1
 port (
   Q : out std_logic;
   C : in std_logic;
   D : in std_logic;
   PRE : in std_logic
 );
end component;
attribute syn_black_box of FDP_1 : component is true;
component FDR
 port (
   Q : out std_logic;
   C : in std_logic;
   D : in std_logic;
   R : in std_logic
 );
end component;
attribute syn_black_box of FDR : component is true;
component FDRE
 port (
   Q : out std_logic;
   C : in std_logic;
   CE : in std_logic;
   D : in std_logic;
   R : in std_logic
 );
end component;
attribute syn_black_box of FDRE : component is true;
component FDRE_1
 port (
   Q : out std_logic;
   C : in std_logic;
   CE : in std_logic;
   D : in std_logic;
   R : in std_logic
 );
end component;
attribute syn_black_box of FDRE_1 : component is true;
component FDRS
 port (
   Q : out std_logic;
   C : in std_logic;
   D : in std_logic;
   R : in std_logic;
   S : in std_logic
 );
end component;
attribute syn_black_box of FDRS : component is true;
component FDRSE
 port (
   Q : out std_logic;
   C : in std_logic;
   CE : in std_logic;
   D : in std_logic;
   R : in std_logic;
   S : in std_logic
 );
end component;
attribute syn_black_box of FDRSE : component is true;
component FDRSE_1
 port (
   Q : out std_logic;
   C : in std_logic;
   CE : in std_logic;
   D : in std_logic;
   R : in std_logic;
   S : in std_logic

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕一区二区不卡| 午夜视频一区二区三区| 欧美午夜精品免费| 国产一区二区久久| 亚洲一区二区三区在线| 亚洲国产精品v| 欧美一二三区在线| 日本高清免费不卡视频| 国产精品影视天天线| 日韩av成人高清| 亚洲精品高清在线观看| 国产拍揄自揄精品视频麻豆 | 欧美亚洲国产一区在线观看网站| 狠狠狠色丁香婷婷综合激情| 天天爽夜夜爽夜夜爽精品视频| 中文字幕在线不卡一区二区三区| 2023国产精华国产精品| 欧美精品在线观看一区二区| 色综合久久中文字幕| 国产精品一卡二卡在线观看| 久久精品国内一区二区三区| 三级久久三级久久| 性久久久久久久久久久久| 中文字幕亚洲视频| 国产日产欧美一区| 久久久国际精品| 精品日韩欧美在线| 日韩一区二区在线免费观看| 欧美日韩一级大片网址| 欧洲精品在线观看| 欧洲国产伦久久久久久久| 日本精品视频一区二区| 91麻豆国产福利在线观看| 成人性生交大片免费看中文| 国产一区二区三区不卡在线观看| 久久99国产精品久久99| 美女网站在线免费欧美精品| 日本欧美韩国一区三区| 石原莉奈在线亚洲三区| 天天色天天爱天天射综合| 性久久久久久久| 日本欧美一区二区| 久99久精品视频免费观看| 日本aⅴ亚洲精品中文乱码| 日韩av电影一区| 久久99在线观看| 久久99国内精品| 国产成人av电影在线| 福利91精品一区二区三区| 成人h动漫精品一区二区 | 日韩亚洲欧美中文三级| 欧美一区二区视频在线观看 | 欧美一级夜夜爽| 欧美草草影院在线视频| www欧美成人18+| 久久久不卡网国产精品一区| 国产精品进线69影院| 国产精品久久久久四虎| 依依成人精品视频| 秋霞国产午夜精品免费视频| 国产一区二区毛片| 91色porny| 91麻豆精品国产91| 久久综合色综合88| 亚洲人妖av一区二区| 天天色 色综合| 国产一区二区视频在线| 97久久精品人人澡人人爽| 欧美色图一区二区三区| 亚洲精品一线二线三线| 亚洲视频一区二区在线观看| 亚洲成人av一区| 国产又黄又大久久| 91女神在线视频| 日韩免费观看高清完整版| 日本一区二区三级电影在线观看| 亚洲欧美乱综合| 美女性感视频久久| 99精品在线观看视频| 欧美久久久久久蜜桃| 国产蜜臀av在线一区二区三区| 亚洲一区二区三区三| 国产在线精品一区二区| 一本色道**综合亚洲精品蜜桃冫| 日韩视频一区二区| 亚洲视频一二区| 久久爱www久久做| 在线亚洲+欧美+日本专区| 欧美精品一区二区久久婷婷| 亚洲精品成人在线| 国产高清亚洲一区| 欧美一区二区视频网站| 亚洲精品免费播放| 国产一区二区三区| 欧美区一区二区三区| 欧美国产激情一区二区三区蜜月| 亚洲在线视频免费观看| 成人性视频网站| 精品乱人伦一区二区三区| 一级做a爱片久久| 国产成人免费av在线| 在线不卡免费欧美| 亚洲卡通动漫在线| 粉嫩蜜臀av国产精品网站| 日韩欧美一区在线| 亚洲超碰精品一区二区| 色综合久久久久| 久久九九久精品国产免费直播| 亚洲二区视频在线| 一本大道久久a久久精二百| 国产欧美日韩在线观看| 美国十次综合导航| 3d成人h动漫网站入口| 夜夜夜精品看看| thepron国产精品| 国产欧美日韩三级| 韩国女主播成人在线| 日韩免费高清av| 日本不卡一区二区| 777午夜精品免费视频| 亚洲综合精品久久| 在线观看成人免费视频| 亚洲免费在线电影| 91香蕉视频污在线| 亚洲欧美在线视频观看| 成人av在线资源网站| 久久久久久久综合| 国产一区二区福利| 精品久久国产97色综合| 蜜桃传媒麻豆第一区在线观看| 制服丝袜日韩国产| 日韩成人免费在线| 制服丝袜av成人在线看| 欧美aaa在线| 日韩三级在线观看| 乱中年女人伦av一区二区| 日韩精品专区在线| 国产一区二区调教| 欧美国产乱子伦| 91视频免费播放| 一区二区三区欧美久久| 欧美色视频一区| 日韩电影免费在线看| 日韩午夜激情电影| 国产麻豆精品视频| 亚洲国产成人私人影院tom| 成人免费视频app| 亚洲欧美偷拍另类a∨色屁股| 色噜噜狠狠一区二区三区果冻| 夜夜操天天操亚洲| 欧美精品欧美精品系列| 欧美aaaaaa午夜精品| 久久久久久久久岛国免费| 成人综合婷婷国产精品久久蜜臀| 国产精品超碰97尤物18| 欧美亚洲丝袜传媒另类| 琪琪一区二区三区| 欧美变态tickling挠脚心| 国产成人在线视频播放| 自拍视频在线观看一区二区| 欧美专区日韩专区| 美女视频网站久久| 欧美国产综合一区二区| 在线一区二区观看| 蜜桃久久久久久久| 国产精品网曝门| 欧美性猛交一区二区三区精品| 热久久一区二区| 欧美激情一区二区三区在线| 91久久人澡人人添人人爽欧美| 日日欢夜夜爽一区| 国产视频不卡一区| 欧美午夜寂寞影院| 国产一区视频导航| 亚洲欧美日韩人成在线播放| 91麻豆精品国产91久久久使用方法 | 蜜臀精品一区二区三区在线观看| 久久蜜桃av一区二区天堂| 一本高清dvd不卡在线观看| 日韩黄色一级片| 国产精品久久久99| 欧美一区二区三区婷婷月色| 高清不卡在线观看av| 亚洲18影院在线观看| 欧美国产欧美亚州国产日韩mv天天看完整 | 韩国欧美国产一区| 亚洲一二三专区| 亚洲国产精品成人久久综合一区| 欧美日韩国产欧美日美国产精品| 国产成人鲁色资源国产91色综 | 日韩精品自拍偷拍| 91年精品国产| 国产精品一区二区在线观看不卡| 尤物在线观看一区| 国产欧美一区二区在线观看| 67194成人在线观看| 色综合久久88色综合天天| 国产在线国偷精品免费看| 天天综合网 天天综合色| 亚洲欧洲精品一区二区精品久久久 |