音影先锋亚洲天堂网|电影世界尽头的爱完整版播放|国产 熟女 91|高清无码免费观看欧美日韩|韩国一区二区三区黄色录像|美女亚洲加勒比在线|亚洲综合网 开心五月|7x成人在线入口|成人网站免费日韩毛片区|国产黄片?一级?二级?三级

登錄 免費(fèi)注冊 首頁 | 行業(yè)黑名單 | 幫助
維庫電子市場網(wǎng)
技術(shù)交流 | 電路欣賞 | 工控天地 | 數(shù)字廣電 | 通信技術(shù) | 電源技術(shù) | 測控之家 | EMC技術(shù) | ARM技術(shù) | EDA技術(shù) | PCB技術(shù) | 嵌入式系統(tǒng)
驅(qū)動編程 | 集成電路 | 器件替換 | 模擬技術(shù) | 新手園地 | 單 片 機(jī) | DSP技術(shù) | MCU技術(shù) | IC 設(shè)計(jì) | IC 產(chǎn)業(yè) | CAN-bus/DeviceNe

用synplify綜合xilinx的IP核,再用ISE implement就出錯了

作者:boy364 欄目:EDA技術(shù)
用synplify綜合XILINX的IP核,再用ISE implement就出錯了
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;



---- Uncomment the following library declaration if instantiating
---- any XILINX primitives in this code.
library UNISIM;
use UNISIM.VComponents.all;



entity FLASH is
    PORT ( clk : in std_logic;
           rst : in std_logic;
           FLASH_out : out std_logic);
end FLASH;



architecture Behavioral of FLASH is
   component clock is
   PORT ( CLKIN_IN        : in    std_logic;
          RST_IN          : in    std_logic;
          CLKIN_IBUFG_OUT : out   std_logic;
          CLK0_OUT        : out   std_logic;
          LOCKED_OUT      : out   std_logic);
end component;
attribute syn_black_box : boolean;
attribute syn_black_box of clock: component is true;
--attribute syn_black_box of clock: component is true;
   signal TEMP: std_logic_vector(1 downto 0);
   signal derive_clk,inter_clk,ready: std_logic;
   signal inter_signal : std_logic;



begin
     u1:   clock
           PORT map(
          CLKIN_IN=>  clk,
       RST_IN=> rst,
       CLK0_OUT=>inter_clk,
       LOCKED_OUT=>ready,
       CLKIN_IBUFG_OUT=>open);
     PROCESS(inter_clk)
    begin
     if(ready='1')  then
      if(inter_clk'event and inter_clk='1')  then
        TEMP<=TEMP+1;
      if(TEMP="11") then
         derive_clk<=  not derive_clk;
                end if;
             end if;
      
          end if;
      end PROCESS;
  PROCESS(derive_clk)
   begin
       if(derive_clk'event and derive_clk='1')  then
             inter_signal<=not inter_signal;
           end if;
      end PROCESS;
   FLASH_out<= inter_signal;
end Behavioral;



上面是源程序,用了一個(gè)IP核:DCM,用synplify綜合,輸出EDIF文件,用ISE implement,結(jié)果出錯了。提示:ERROR:NgdBuild:604 - logical block 'u1' with type 'clock' could not be resolved.
   A pin NAME misspelling can cause this, a missing edif or ngc file, or the
   misspelling of a type NAME. Symbol 'clock' is not supPORTed in target
   'spartan3'.



還要在ISE工程中添加什么文件嗎,添加core generator生成的clock.xaw也不行,還是提示同樣的錯誤,高手指點(diǎn)啊,到底怎么回事?



2樓: >>參與討論
boy364
知道了
在synplify工程中加入clock.vhd就可以了。犯了個(gè)錯誤
ise implement的時(shí)候并不知道component clock是什么東西

參與討論
昵稱:
討論內(nèi)容:
 
 
相關(guān)帖子
forever和always用于時(shí)鐘的疑惑?
CaptuerCIS中CTRL+F(Find)問題請教
誰有攝像一體機(jī)的機(jī)芯資料或電路圖
哪個(gè)網(wǎng)站有提供power pcb5.0軟件
fpga 和 cpld有什么區(qū)別?學(xué)的話選那個(gè)?
免費(fèi)注冊為維庫電子開發(fā)網(wǎng)會員,參與電子工程師社區(qū)討論,點(diǎn)此進(jìn)入


Copyright © 1998-2006 m.58mhw.cn 浙ICP證030469號