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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? rom_form.vhd

?? Xilinx的培訓教程的源碼 virtex
?? VHD
字號:
ROM_form.vhd

Ken Chapman (Xilinx Ltd) July 2003

This is the VHDL template file for the KCPSM3 assembler.
It is used to configure a Spartan-3, Virtex-II or Virtex-IIPRO block RAM to act as 
a single port program ROM.

This VHDL file is not valid as input directly into a synthesis or simulation tool.
The assembler will read this template and insert the data required to complete the 
definition of program ROM and write it out to a new '.vhd' file associated with the 
name of the original '.psm' file being assembled.

This template can be modified to define alternative memory definitions such as dual port.
However, you are responsible for ensuring the template is correct as the assembler does 
not perform any checking of the VHDL.

The assembler identifies all text enclosed by {} characters, and replaces these
character strings. All templates should include these {} character strings for 
the assembler to work correctly. 

****************************************************************************************
	
This template defines a block RAM configured in 1024 x 18-bit single port mode and 
conneceted to act as a single port ROM.

****************************************************************************************

The next line is used to determine where the template actually starts and must exist.
{begin template}
--
-- Definition of a single port ROM for KCPSM3 program defined by {name}.psm
-- and assmbled using KCPSM3 assembler.
--
-- Standard IEEE libraries
--
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
--
-- The Unisim Library is used to define Xilinx primitives. It is also used during
-- simulation. The source can be viewed at %XILINX%\vhdl\src\unisims\unisim_VCOMP.vhd
--  
library unisim;
use unisim.vcomponents.all;
--
--
entity {name} is
    Port (      address : in std_logic_vector(9 downto 0);
            instruction : out std_logic_vector(17 downto 0);
                    clk : in std_logic);
    end {name};
--
architecture low_level_definition of {name} is
--
-- Attributes to define ROM contents during implementation synthesis. 
-- The information is repeated in the generic map for functional simulation
--
attribute INIT_00 : string; 
attribute INIT_01 : string; 
attribute INIT_02 : string; 
attribute INIT_03 : string; 
attribute INIT_04 : string; 
attribute INIT_05 : string; 
attribute INIT_06 : string; 
attribute INIT_07 : string; 
attribute INIT_08 : string; 
attribute INIT_09 : string; 
attribute INIT_0A : string; 
attribute INIT_0B : string; 
attribute INIT_0C : string; 
attribute INIT_0D : string; 
attribute INIT_0E : string; 
attribute INIT_0F : string; 
attribute INIT_10 : string; 
attribute INIT_11 : string; 
attribute INIT_12 : string; 
attribute INIT_13 : string; 
attribute INIT_14 : string; 
attribute INIT_15 : string; 
attribute INIT_16 : string; 
attribute INIT_17 : string; 
attribute INIT_18 : string; 
attribute INIT_19 : string; 
attribute INIT_1A : string; 
attribute INIT_1B : string; 
attribute INIT_1C : string; 
attribute INIT_1D : string; 
attribute INIT_1E : string; 
attribute INIT_1F : string; 
attribute INIT_20 : string; 
attribute INIT_21 : string; 
attribute INIT_22 : string; 
attribute INIT_23 : string; 
attribute INIT_24 : string; 
attribute INIT_25 : string; 
attribute INIT_26 : string; 
attribute INIT_27 : string; 
attribute INIT_28 : string; 
attribute INIT_29 : string; 
attribute INIT_2A : string; 
attribute INIT_2B : string; 
attribute INIT_2C : string; 
attribute INIT_2D : string; 
attribute INIT_2E : string; 
attribute INIT_2F : string; 
attribute INIT_30 : string; 
attribute INIT_31 : string; 
attribute INIT_32 : string; 
attribute INIT_33 : string; 
attribute INIT_34 : string; 
attribute INIT_35 : string; 
attribute INIT_36 : string; 
attribute INIT_37 : string; 
attribute INIT_38 : string; 
attribute INIT_39 : string; 
attribute INIT_3A : string; 
attribute INIT_3B : string; 
attribute INIT_3C : string; 
attribute INIT_3D : string; 
attribute INIT_3E : string; 
attribute INIT_3F : string; 
attribute INITP_00 : string;
attribute INITP_01 : string;
attribute INITP_02 : string;
attribute INITP_03 : string;
attribute INITP_04 : string;
attribute INITP_05 : string;
attribute INITP_06 : string;
attribute INITP_07 : string;
--
-- Attributes to define ROM contents during implementation synthesis.
--
attribute INIT_00 of ram_1024_x_18  : label is "{INIT_00}";
attribute INIT_01 of ram_1024_x_18  : label is "{INIT_01}";
attribute INIT_02 of ram_1024_x_18  : label is "{INIT_02}";
attribute INIT_03 of ram_1024_x_18  : label is "{INIT_03}";
attribute INIT_04 of ram_1024_x_18  : label is "{INIT_04}";
attribute INIT_05 of ram_1024_x_18  : label is "{INIT_05}";
attribute INIT_06 of ram_1024_x_18  : label is "{INIT_06}";
attribute INIT_07 of ram_1024_x_18  : label is "{INIT_07}";
attribute INIT_08 of ram_1024_x_18  : label is "{INIT_08}";
attribute INIT_09 of ram_1024_x_18  : label is "{INIT_09}";
attribute INIT_0A of ram_1024_x_18  : label is "{INIT_0A}";
attribute INIT_0B of ram_1024_x_18  : label is "{INIT_0B}";
attribute INIT_0C of ram_1024_x_18  : label is "{INIT_0C}";
attribute INIT_0D of ram_1024_x_18  : label is "{INIT_0D}";
attribute INIT_0E of ram_1024_x_18  : label is "{INIT_0E}";
attribute INIT_0F of ram_1024_x_18  : label is "{INIT_0F}";
attribute INIT_10 of ram_1024_x_18  : label is "{INIT_10}";
attribute INIT_11 of ram_1024_x_18  : label is "{INIT_11}";
attribute INIT_12 of ram_1024_x_18  : label is "{INIT_12}";
attribute INIT_13 of ram_1024_x_18  : label is "{INIT_13}";
attribute INIT_14 of ram_1024_x_18  : label is "{INIT_14}";
attribute INIT_15 of ram_1024_x_18  : label is "{INIT_15}";
attribute INIT_16 of ram_1024_x_18  : label is "{INIT_16}";
attribute INIT_17 of ram_1024_x_18  : label is "{INIT_17}";
attribute INIT_18 of ram_1024_x_18  : label is "{INIT_18}";
attribute INIT_19 of ram_1024_x_18  : label is "{INIT_19}";
attribute INIT_1A of ram_1024_x_18  : label is "{INIT_1A}";
attribute INIT_1B of ram_1024_x_18  : label is "{INIT_1B}";
attribute INIT_1C of ram_1024_x_18  : label is "{INIT_1C}";
attribute INIT_1D of ram_1024_x_18  : label is "{INIT_1D}";
attribute INIT_1E of ram_1024_x_18  : label is "{INIT_1E}";
attribute INIT_1F of ram_1024_x_18  : label is "{INIT_1F}";
attribute INIT_20 of ram_1024_x_18  : label is "{INIT_20}";
attribute INIT_21 of ram_1024_x_18  : label is "{INIT_21}";
attribute INIT_22 of ram_1024_x_18  : label is "{INIT_22}";
attribute INIT_23 of ram_1024_x_18  : label is "{INIT_23}";
attribute INIT_24 of ram_1024_x_18  : label is "{INIT_24}";
attribute INIT_25 of ram_1024_x_18  : label is "{INIT_25}";
attribute INIT_26 of ram_1024_x_18  : label is "{INIT_26}";
attribute INIT_27 of ram_1024_x_18  : label is "{INIT_27}";
attribute INIT_28 of ram_1024_x_18  : label is "{INIT_28}";
attribute INIT_29 of ram_1024_x_18  : label is "{INIT_29}";
attribute INIT_2A of ram_1024_x_18  : label is "{INIT_2A}";
attribute INIT_2B of ram_1024_x_18  : label is "{INIT_2B}";
attribute INIT_2C of ram_1024_x_18  : label is "{INIT_2C}";
attribute INIT_2D of ram_1024_x_18  : label is "{INIT_2D}";
attribute INIT_2E of ram_1024_x_18  : label is "{INIT_2E}";
attribute INIT_2F of ram_1024_x_18  : label is "{INIT_2F}";
attribute INIT_30 of ram_1024_x_18  : label is "{INIT_30}";
attribute INIT_31 of ram_1024_x_18  : label is "{INIT_31}";
attribute INIT_32 of ram_1024_x_18  : label is "{INIT_32}";
attribute INIT_33 of ram_1024_x_18  : label is "{INIT_33}";
attribute INIT_34 of ram_1024_x_18  : label is "{INIT_34}";
attribute INIT_35 of ram_1024_x_18  : label is "{INIT_35}";
attribute INIT_36 of ram_1024_x_18  : label is "{INIT_36}";
attribute INIT_37 of ram_1024_x_18  : label is "{INIT_37}";
attribute INIT_38 of ram_1024_x_18  : label is "{INIT_38}";
attribute INIT_39 of ram_1024_x_18  : label is "{INIT_39}";
attribute INIT_3A of ram_1024_x_18  : label is "{INIT_3A}";
attribute INIT_3B of ram_1024_x_18  : label is "{INIT_3B}";
attribute INIT_3C of ram_1024_x_18  : label is "{INIT_3C}";
attribute INIT_3D of ram_1024_x_18  : label is "{INIT_3D}";
attribute INIT_3E of ram_1024_x_18  : label is "{INIT_3E}";
attribute INIT_3F of ram_1024_x_18  : label is "{INIT_3F}";
attribute INITP_00 of ram_1024_x_18 : label is "{INITP_00}";
attribute INITP_01 of ram_1024_x_18 : label is "{INITP_01}";
attribute INITP_02 of ram_1024_x_18 : label is "{INITP_02}";
attribute INITP_03 of ram_1024_x_18 : label is "{INITP_03}";
attribute INITP_04 of ram_1024_x_18 : label is "{INITP_04}";
attribute INITP_05 of ram_1024_x_18 : label is "{INITP_05}";
attribute INITP_06 of ram_1024_x_18 : label is "{INITP_06}";
attribute INITP_07 of ram_1024_x_18 : label is "{INITP_07}";
--
begin
--
  --Instantiate the Xilinx primitive for a block RAM
  ram_1024_x_18: RAMB16_S18
  --synthesis translate_off
  --INIT values repeated to define contents for functional simulation
  generic map ( INIT_00 => X"{INIT_00}",
                INIT_01 => X"{INIT_01}",
                INIT_02 => X"{INIT_02}",
                INIT_03 => X"{INIT_03}",
                INIT_04 => X"{INIT_04}",
                INIT_05 => X"{INIT_05}",
                INIT_06 => X"{INIT_06}",
                INIT_07 => X"{INIT_07}",
                INIT_08 => X"{INIT_08}",
                INIT_09 => X"{INIT_09}",
                INIT_0A => X"{INIT_0A}",
                INIT_0B => X"{INIT_0B}",
                INIT_0C => X"{INIT_0C}",
                INIT_0D => X"{INIT_0D}",
                INIT_0E => X"{INIT_0E}",
                INIT_0F => X"{INIT_0F}",
                INIT_10 => X"{INIT_10}",
                INIT_11 => X"{INIT_11}",
                INIT_12 => X"{INIT_12}",
                INIT_13 => X"{INIT_13}",
                INIT_14 => X"{INIT_14}",
                INIT_15 => X"{INIT_15}",
                INIT_16 => X"{INIT_16}",
                INIT_17 => X"{INIT_17}",
                INIT_18 => X"{INIT_18}",
                INIT_19 => X"{INIT_19}",
                INIT_1A => X"{INIT_1A}",
                INIT_1B => X"{INIT_1B}",
                INIT_1C => X"{INIT_1C}",
                INIT_1D => X"{INIT_1D}",
                INIT_1E => X"{INIT_1E}",
                INIT_1F => X"{INIT_1F}",
                INIT_20 => X"{INIT_20}",
                INIT_21 => X"{INIT_21}",
                INIT_22 => X"{INIT_22}",
                INIT_23 => X"{INIT_23}",
                INIT_24 => X"{INIT_24}",
                INIT_25 => X"{INIT_25}",
                INIT_26 => X"{INIT_26}",
                INIT_27 => X"{INIT_27}",
                INIT_28 => X"{INIT_28}",
                INIT_29 => X"{INIT_29}",
                INIT_2A => X"{INIT_2A}",
                INIT_2B => X"{INIT_2B}",
                INIT_2C => X"{INIT_2C}",
                INIT_2D => X"{INIT_2D}",
                INIT_2E => X"{INIT_2E}",
                INIT_2F => X"{INIT_2F}",
                INIT_30 => X"{INIT_30}",
                INIT_31 => X"{INIT_31}",
                INIT_32 => X"{INIT_32}",
                INIT_33 => X"{INIT_33}",
                INIT_34 => X"{INIT_34}",
                INIT_35 => X"{INIT_35}",
                INIT_36 => X"{INIT_36}",
                INIT_37 => X"{INIT_37}",
                INIT_38 => X"{INIT_38}",
                INIT_39 => X"{INIT_39}",
                INIT_3A => X"{INIT_3A}",
                INIT_3B => X"{INIT_3B}",
                INIT_3C => X"{INIT_3C}",
                INIT_3D => X"{INIT_3D}",
                INIT_3E => X"{INIT_3E}",
                INIT_3F => X"{INIT_3F}",    
               INITP_00 => X"{INITP_00}",
               INITP_01 => X"{INITP_01}",
               INITP_02 => X"{INITP_02}",
               INITP_03 => X"{INITP_03}",
               INITP_04 => X"{INITP_04}",
               INITP_05 => X"{INITP_05}",
               INITP_06 => X"{INITP_06}",
               INITP_07 => X"{INITP_07}")
  --synthesis translate_on
  port map(    DI => "0000000000000000",
              DIP => "00",
               EN => '1',
               WE => '0',
              SSR => '0',
              CLK => clk,
             ADDR => address,
               DO => instruction(15 downto 0),
              DOP => instruction(17 downto 16)); 
--
end low_level_definition;
--
------------------------------------------------------------------------------------
--
-- END OF FILE {name}.vhd
--
------------------------------------------------------------------------------------

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
老司机精品视频一区二区三区| 国产精品综合在线视频| 日韩国产精品久久久| 六月婷婷色综合| 欧美男生操女生| 日韩欧美在线123| 国产精品色哟哟| 蜜桃视频一区二区| 91麻豆国产福利在线观看| 一本在线高清不卡dvd| 91精品国产一区二区| 国产午夜三级一区二区三| 国产精品日产欧美久久久久| 热久久久久久久| 91精品国产乱码久久蜜臀| 日韩av中文在线观看| 日韩美女一区二区三区四区| 日本女优在线视频一区二区| 日韩欧美亚洲国产精品字幕久久久| 日韩av二区在线播放| 337p粉嫩大胆色噜噜噜噜亚洲 | 国产宾馆实践打屁股91| 国产午夜精品一区二区| 国产乱国产乱300精品| 中文字幕欧美国产| 成人激情综合网站| 亚洲综合一区二区精品导航| 欧美裸体一区二区三区| 另类欧美日韩国产在线| 中文字幕日本不卡| 欧美日韩中字一区| 国产乱子伦视频一区二区三区| 亚洲国产经典视频| 欧美精品123区| 国产夫妻精品视频| 一区二区三区在线播放| 亚洲人成网站精品片在线观看| 99精品国产99久久久久久白柏| 婷婷久久综合九色综合伊人色| 欧美大片日本大片免费观看| 国产盗摄视频一区二区三区| 一区二区三区日韩| 国产人妖乱国产精品人妖| 欧美吞精做爰啪啪高潮| 床上的激情91.| 麻豆成人av在线| 一区二区久久久| 国产精品欧美一区喷水| 日韩视频免费观看高清完整版在线观看| 国产高清一区日本| 日本一不卡视频| 亚洲一级不卡视频| 国产精品久久久久久久久免费桃花| 欧美肥胖老妇做爰| 欧美色涩在线第一页| 99久久精品免费看国产免费软件| 国内欧美视频一区二区| 日韩精品高清不卡| 日韩精品每日更新| 婷婷一区二区三区| 午夜精品一区二区三区电影天堂 | 欧美日韩久久不卡| 色综合婷婷久久| 国产99久久久国产精品免费看| 国产在线视频一区二区| 极品瑜伽女神91| 精品一区二区三区视频| 久久精品国产第一区二区三区| 麻豆91在线看| 精品在线亚洲视频| 不卡电影免费在线播放一区| 久久99久国产精品黄毛片色诱| 青青草成人在线观看| 五月天激情小说综合| 男人操女人的视频在线观看欧美| 香蕉久久一区二区不卡无毒影院| 亚洲黄色性网站| 亚洲一区二区三区爽爽爽爽爽 | 成人动漫av在线| 99精品视频在线观看免费| 91毛片在线观看| 欧美日韩精品一区二区三区| 欧美日韩一区二区电影| 91福利社在线观看| 91精品婷婷国产综合久久性色| 欧美高清视频一二三区 | 免费不卡在线视频| 激情综合色综合久久| 成人一区二区三区视频在线观看| 国v精品久久久网| 色综合色狠狠天天综合色| 91精品国产91综合久久蜜臀| 2022国产精品视频| 一区二区三区四区激情 | 欧美日韩和欧美的一区二区| 日韩一区二区影院| 玉米视频成人免费看| 蜜桃在线一区二区三区| av动漫一区二区| 日韩丝袜美女视频| 亚洲男女一区二区三区| 久久99久久久久久久久久久| 色偷偷久久一区二区三区| 91精品国产91久久综合桃花| 国产精品久久久久aaaa| 午夜精品在线看| 在线免费观看日本一区| 国产日韩欧美精品电影三级在线 | 亚洲狼人国产精品| 国产盗摄视频一区二区三区| 欧美一区二区三区视频在线观看 | 高清不卡一二三区| 91精品一区二区三区久久久久久 | 日本不卡在线视频| 欧洲亚洲精品在线| 亚洲精品高清在线观看| 国产一区二区三区在线观看免费视频| 欧日韩精品视频| 中文字幕字幕中文在线中不卡视频| 在线观看欧美黄色| 亚洲国产精品二十页| 激情五月激情综合网| 欧美一区二区在线视频| 一区二区免费在线| 在线免费观看成人短视频| 有码一区二区三区| 色噜噜狠狠色综合欧洲selulu| 亚洲国产精品成人综合| 福利一区二区在线观看| 国产精品对白交换视频| 成人免费av网站| 国产精品女人毛片| 97精品国产露脸对白| 国产精品高潮久久久久无| 99视频一区二区| 亚洲国产aⅴ天堂久久| 欧美日韩二区三区| 久久国产精品99久久久久久老狼| 日韩女优av电影在线观看| 久久99国产精品麻豆| 久久蜜桃一区二区| 波多野结衣亚洲一区| 亚洲精选视频免费看| 欧美精品在线观看播放| 老司机精品视频在线| 国产女主播一区| 欧美日韩激情一区| 国产精品99久| 一区二区三区产品免费精品久久75 | 国产精品色哟哟| 在线看日韩精品电影| 精品伊人久久久久7777人| 中日韩av电影| 欧美日本在线视频| 白白色亚洲国产精品| 一区二区三区免费观看| 欧美成人精品福利| av综合在线播放| 麻豆精品精品国产自在97香蕉| 国产喷白浆一区二区三区| 一本到不卡免费一区二区| 日韩经典一区二区| 一区二区三区电影在线播| av电影天堂一区二区在线| 午夜成人在线视频| 国产精品久久毛片a| 日韩欧美在线网站| 欧美午夜精品一区二区三区 | 欧美精品免费视频| 91猫先生在线| 波多野结衣中文字幕一区 | 99精品欧美一区二区三区小说 | 91精品国产综合久久久久久| 成人免费观看av| 国产成人在线视频网站| 舔着乳尖日韩一区| 亚洲欧洲韩国日本视频| 久久久久久久久99精品| 欧美日韩国产高清一区二区三区| 国产精品一区二区三区乱码| 性做久久久久久久久| 亚洲综合精品自拍| 亚洲综合男人的天堂| 夜夜夜精品看看| 自拍偷拍国产亚洲| 综合亚洲深深色噜噜狠狠网站| 中文字幕欧美国产| 国产精品天美传媒沈樵| 久久精品一区二区三区四区| 欧美zozozo| 26uuu另类欧美亚洲曰本| 日韩一区二区免费视频| 国产精品乱人伦| 日韩理论片一区二区| 欧美激情中文不卡| 亚洲精品视频在线观看网站| 国产三级精品视频| 亚洲人成在线播放网站岛国| 亚洲欧美日韩成人高清在线一区| 综合色天天鬼久久鬼色|