|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
因为试验需要 我在用一个逻辑控制xilinx fpga 时钟的时候 综合通不过 感觉应该做下时序约束 但到网上又搜不到 请大牛指点!!
具体是这样的,通过一个其他逻辑产生的控制信号ctrl来控制clk_out1的输出,作为其他模块的时钟,综合时有两个错误!
process(clk)
begin
if(clk'event and clk='1') then
if(ctrl='0') then ------while control is 0 ,run normal;
clk_out1<=clk;
else
clk_out1<= '0';
end if;
end if;
end process;
ERROR:NgdBuild:455 - logical net 'clk_out1' has multiple driver(s):
ERROR:NgdBuild:924 - input pad net 'clk_out1' is driving non-buffer primitives: |
|