Error: Quartus II Analysis & Synthesis was unsuccessful.大神帮 ...
发布网友
发布时间:2024-09-30 03:08
我来回答
共1个回答
热心网友
时间:2024-09-30 22:40
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
把这两个库也声明了。
还有你的分频也不对啊,建议这么写:
if clk'event and clk = '1' then --200分频
if count=99 then
count:=0;
sclk_tmp<= not sclk_tmp;
else
count:=count + 1;
end if;
end if;