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

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

?? normal_rom_form.vhd

?? This the 8th release of PicoBlaze for Spartan-3, Spartan-3E Virtex-II, Virtex-IIPro and Virtex-4 d
?? 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
--
-- Generated by KCPSM3 Assembler {timestamp}. 
--
-- 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
--
------------------------------------------------------------------------------------

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品一区二区影视| 亚洲狠狠丁香婷婷综合久久久| 亚洲精品国产第一综合99久久| 本田岬高潮一区二区三区| 国产日韩精品一区二区三区| 国产精品123| 国产精品无人区| 91女神在线视频| 亚洲精品免费在线播放| 欧美日韩一区不卡| 日本aⅴ免费视频一区二区三区| 日韩欧美在线影院| 国产黄色精品网站| 国产精品久久久久影视| 欧美亚州韩日在线看免费版国语版| 亚洲午夜国产一区99re久久| 日韩欧美一区中文| 国产91精品入口| 一级女性全黄久久生活片免费| 欧美日韩综合一区| 久久97超碰国产精品超碰| 国产精品视频在线看| 色8久久精品久久久久久蜜| 午夜久久久久久久久| 欧美精品一区二区精品网| 99精品视频在线播放观看| 亚洲不卡一区二区三区| 2017欧美狠狠色| 一本色道a无线码一区v| 蜜臀精品一区二区三区在线观看 | 欧美性受xxxx黑人xyx性爽| 五月婷婷色综合| 久久精品亚洲精品国产欧美 | 成人免费观看av| 国产99久久久国产精品潘金网站| 国产精品毛片久久久久久| 欧美精品v国产精品v日韩精品| 韩国v欧美v日本v亚洲v| 一区二区三区在线看| www激情久久| 欧美在线|欧美| 国产精品一区久久久久| 亚洲国产精品影院| 国产精品色在线观看| 91精品国产综合久久福利| 91麻豆文化传媒在线观看| 精品一区二区三区久久久| 一区二区三区产品免费精品久久75| 欧美大片免费久久精品三p| 91在线视频网址| 国产aⅴ精品一区二区三区色成熟| 日欧美一区二区| 一区二区成人在线| 国产精品色哟哟| 精品成人免费观看| 91精品国产一区二区人妖| 色一情一伦一子一伦一区| 国产aⅴ综合色| 国产在线国偷精品免费看| 视频精品一区二区| 亚洲综合视频在线| 中文字幕电影一区| 久久久精品2019中文字幕之3| 欧美一区二区三区免费观看视频| 91捆绑美女网站| 99久久国产综合精品色伊| 国产一区二区三区在线观看免费视频 | 日本一区免费视频| 精品国产凹凸成av人导航| 日韩一区二区在线观看| 777欧美精品| 欧美日韩国产色站一区二区三区| 色综合 综合色| 99精品黄色片免费大全| www.久久精品| av中文字幕不卡| 成+人+亚洲+综合天堂| 粉嫩欧美一区二区三区高清影视 | 国产成人欧美日韩在线电影| 久久se精品一区精品二区| 免费成人你懂的| 午夜影院久久久| 日韩精品91亚洲二区在线观看| 一区二区三区四区在线免费观看 | 午夜精品aaa| 亚洲高清在线视频| 亚洲chinese男男1069| 视频一区视频二区中文字幕| 日本不卡在线视频| 久久99精品久久久| 国产一区二区导航在线播放| 国产高清在线观看免费不卡| 粉嫩在线一区二区三区视频| www.性欧美| 欧美日韩综合不卡| 欧美mv日韩mv国产| 国产午夜精品在线观看| 日本一区二区动态图| 成人欧美一区二区三区| 亚洲一区二区三区激情| 日韩av在线发布| 国产精品一区三区| 99r国产精品| 欧美日韩1区2区| 精品国产伦一区二区三区观看方式 | 亚洲日本在线天堂| 亚洲成人免费观看| 国产在线精品免费av| 99国产麻豆精品| 3d成人动漫网站| 国产性天天综合网| 一区二区三区在线观看欧美| 久久精品国产久精国产爱| 国产91在线看| 欧美精品aⅴ在线视频| 国产亚洲精品精华液| 亚洲精品自拍动漫在线| 午夜在线成人av| 国产99久久久久久免费看农村| 91久久精品一区二区二区| 日韩视频在线一区二区| 中文字幕一区二区5566日韩| 日本最新不卡在线| 成人黄色在线看| 日韩亚洲欧美在线| ●精品国产综合乱码久久久久| 日韩成人免费看| 不卡一区二区三区四区| 欧美一区二区视频在线观看| 国产精品久久久久久久久搜平片 | 国产精品久久久久天堂| 美腿丝袜亚洲综合| 在线视频国内自拍亚洲视频| 久久久美女艺术照精彩视频福利播放| 亚洲精品乱码久久久久久| 国产一区二区三区在线观看免费视频 | 日韩精品一区二区三区视频播放 | 色综合天天天天做夜夜夜夜做| 3atv一区二区三区| 一区二区三区日韩欧美精品| 国产福利91精品| 欧美一级日韩不卡播放免费| 亚洲美女淫视频| 粉嫩绯色av一区二区在线观看| 日韩一区二区免费视频| 亚洲成人av资源| 色欧美日韩亚洲| 中文字幕一区二区三区四区| 韩日精品视频一区| 日韩精品中文字幕在线不卡尤物| 亚洲一区二区三区在线看| 成人福利视频在线| 国产色产综合产在线视频| 久久99精品一区二区三区| 欧美酷刑日本凌虐凌虐| 亚洲一区二区三区四区五区黄| 99亚偷拍自图区亚洲| 国产精品无遮挡| 国产91精品一区二区麻豆网站| www激情久久| 国产一区视频网站| 欧美成人性战久久| 色综合天天综合在线视频| 国产三级一区二区| 国产成人免费高清| 日本一区免费视频| 成人午夜在线免费| 国产精品久久久久三级| 不卡一二三区首页| 中文字幕亚洲在| 91尤物视频在线观看| 自拍偷自拍亚洲精品播放| av电影在线观看完整版一区二区 | 中文字幕视频一区| 99国产精品99久久久久久| 亚洲欧美乱综合| 91国产成人在线| 丝袜a∨在线一区二区三区不卡| 欧美视频一区二区三区在线观看 | 国产在线精品一区在线观看麻豆| 日韩欧美一卡二卡| 精品一区二区三区在线观看| www国产成人免费观看视频 深夜成人网| 久久狠狠亚洲综合| 久久九九久久九九| 成人福利电影精品一区二区在线观看| 中文字幕欧美一区| 欧美午夜免费电影| 男人的j进女人的j一区| 久久在线观看免费| 99视频国产精品| 亚洲成人手机在线| 日韩你懂的在线播放| 国产成人一区在线| 亚洲精品欧美二区三区中文字幕| 欧美日本在线一区| 国产成人综合精品三级| 亚洲欧洲综合另类| 91麻豆精品国产91久久久| 国产美女精品一区二区三区|