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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? rom_form.vhd

?? Xillinx 的8位MCU軟核的源代碼
?? VHD
字號(hào):
ROM_form.vhd

Ken Chapman (Xilinx Ltd) January 2002

This is the VHDL template file for the KCSPM2 assembler.
It is used to configure a Virtext-II 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 KCPSM-II program defined by {name}.psm
-- and assmbled using KCPSM2 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 prog_rom;
--
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
  --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}")
  --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 ROM_form.vhd
--
------------------------------------------------------------------------------------

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产麻豆视频精品| 亚洲精品久久嫩草网站秘色| 韩国av一区二区三区在线观看| 久久婷婷久久一区二区三区| 91浏览器在线视频| 日本不卡在线视频| 一区二区在线观看av| 久久网这里都是精品| 欧美日韩极品在线观看一区| 国产目拍亚洲精品99久久精品| 一区二区视频免费在线观看| 国产91丝袜在线播放九色| 日韩视频123| 午夜成人免费电影| 精品视频在线免费| 亚洲激情网站免费观看| 91在线观看污| 亚洲男人的天堂在线观看| 成人av网址在线观看| 国产精品久久夜| 色综合咪咪久久| 一区二区三区在线免费视频| 91蜜桃婷婷狠狠久久综合9色| 亚洲视频你懂的| 欧美性猛交xxxx乱大交退制版| 1区2区3区精品视频| 成人av小说网| 亚洲最大色网站| 日韩一区二区三区四区五区六区| 天堂一区二区在线| 制服丝袜亚洲色图| 欧美亚洲国产一区二区三区va | 国产偷国产偷精品高清尤物| 91亚洲男人天堂| 狠狠色丁香久久婷婷综合_中| 亚洲欧美日韩一区二区| 久久精品网站免费观看| 欧美区视频在线观看| 97se亚洲国产综合自在线观| 国产精品99久久久久| 国产麻豆视频一区| 久久精品国产99| 狠狠色丁香久久婷婷综| 日本不卡视频在线| 美国十次综合导航| 欧美a级理论片| 久久er精品视频| 国内成+人亚洲+欧美+综合在线| 石原莉奈一区二区三区在线观看| 亚洲成在人线在线播放| 亚洲h精品动漫在线观看| 午夜电影网亚洲视频| 五月天亚洲婷婷| 麻豆国产欧美一区二区三区| 蜜臀91精品一区二区三区| 国产一区欧美二区| 国产99精品国产| 91年精品国产| 欧美电影在线免费观看| 久久亚洲精品国产精品紫薇| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 婷婷开心激情综合| 国产传媒一区在线| 9191成人精品久久| **网站欧美大片在线观看| 国产一区在线观看视频| 88在线观看91蜜桃国自产| 亚洲欧洲另类国产综合| 国产在线一区二区综合免费视频| 欧美美女视频在线观看| 亚洲另类春色国产| 99re视频这里只有精品| 欧美一区二区久久| 欧美一级淫片007| 久久奇米777| 国产成人8x视频一区二区| 色噜噜狠狠色综合欧洲selulu| 7777精品伊人久久久大香线蕉经典版下载 | 亚洲福利视频一区| 国产一区二区视频在线| 六月丁香综合在线视频| 91视频免费观看| 91精品国产一区二区人妖| 亚洲男人的天堂一区二区| heyzo一本久久综合| 欧美色国产精品| 26uuu另类欧美亚洲曰本| 天天色 色综合| 99riav一区二区三区| 久久久久久久久久久久久久久99| 亚洲伊人伊色伊影伊综合网 | 精品卡一卡二卡三卡四在线| 综合色中文字幕| 成人一道本在线| 久久精品夜夜夜夜久久| 精品一区二区三区蜜桃| 日韩午夜在线播放| 日韩在线a电影| 欧美一区二区女人| 日韩中文字幕1| 日韩一区二区麻豆国产| 麻豆成人久久精品二区三区小说| 4438成人网| 国产乱码精品一区二区三区忘忧草 | 久久天天做天天爱综合色| 香蕉乱码成人久久天堂爱免费| 色狠狠av一区二区三区| 亚洲成人中文在线| 99视频国产精品| 激情久久五月天| 欧美中文字幕不卡| 国产精品香蕉一区二区三区| 亚洲综合免费观看高清完整版| 精品国产乱码久久久久久牛牛 | 久久精品亚洲国产奇米99| 色婷婷亚洲婷婷| 日本中文一区二区三区| 亚洲美女精品一区| 欧美一区中文字幕| 色天使久久综合网天天| 国产91丝袜在线播放0| 日本亚洲视频在线| 亚洲香蕉伊在人在线观| 1024国产精品| 亚洲日本中文字幕区| 久久午夜羞羞影院免费观看| 欧美一区二区三区四区视频| 国产精品白丝jk白祙喷水网站| 日韩av在线播放中文字幕| 亚洲精品少妇30p| 日韩伦理免费电影| 久久免费看少妇高潮| 国产三级一区二区| 中文字幕精品一区二区三区精品| 久久精品视频免费| 日本一区二区不卡视频| 国产精品毛片无遮挡高清| 国产情人综合久久777777| 中文字幕成人在线观看| 国产精品你懂的在线欣赏| 精品国精品自拍自在线| 久久午夜免费电影| 精品久久久久香蕉网| 国产欧美视频在线观看| 中文字幕av一区二区三区免费看| 欧美国产日本韩| 亚洲国产成人av网| 精品夜夜嗨av一区二区三区| 成人永久免费视频| 97se亚洲国产综合在线| 在线播放中文字幕一区| 久久精品在线免费观看| 中文av一区特黄| 亚州成人在线电影| 国产精品538一区二区在线| 99riav一区二区三区| 欧美久久久久久蜜桃| 国产精品日韩精品欧美在线| 亚洲成人免费观看| 国产精品小仙女| 日韩一区二区三区在线视频| 国产亚洲精品7777| 免费人成精品欧美精品| 一区二区免费看| 日本免费新一区视频| 久久国产精品72免费观看| 国产a区久久久| 91一区在线观看| 久久久不卡网国产精品二区 | 一本大道久久a久久综合| 日韩午夜激情av| 亚洲一区二区精品3399| 日本不卡中文字幕| 在线影视一区二区三区| 欧洲国产伦久久久久久久| 中文字幕免费不卡| 国产一区二区三区在线观看免费| 色乱码一区二区三区88| 国产精品国产三级国产普通话蜜臀 | 欧美xxxxxxxxx| 亚洲一区欧美一区| 在线观看免费一区| 国产三级精品视频| 国产成人小视频| 久久精品水蜜桃av综合天堂| 国内精品嫩模私拍在线| 日韩欧美一二区| 国产精品一区二区黑丝| 欧美久久久久久蜜桃| 日韩高清在线不卡| 欧美午夜不卡在线观看免费| 亚洲欧美日韩人成在线播放| 欧洲一区二区三区在线| 国产精品每日更新在线播放网址| 国产精品一区二区三区四区| 日韩一级黄色大片| 国产酒店精品激情| 亚洲国产精品国自产拍av| 不卡视频一二三| 亚洲一区av在线|