三角波发生电路
library ieee;use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;
entity abc is
port(clk,reset:in std_logic;
q1:out std_logic_vector(7 downto 0));
end abc;
architecture delta_arc of abc is
begin
process(clk,reset)
variable tmp:std_logic_vector(7 downto 0);
variable a:std_logic;
begin
if reset='1' then
tmp:="00000000";
a:='0';
elsif clk'event and clk='1' then
if a='0' then
if tmp="11111110" then
tmp:="11111111";
a:='1';
else
tmp:=tmp+1;
end if;
else
if tmp="00000001" then
tmp:="00000000";
a:='0';
else
tmp:=tmp-1;
end if;
end if;
end if;
q1<=tmp;
end process;
end delta_arc;
这是我写的三角波程序 仿真的时候产生很多毛刺怎么解决 急求 谢谢分享,前来学习 产生毛刺的解决办法:采用功能仿真。 谢谢分享,为什么中间有个图标 谢谢分享,为什么中间有个图标 三角波发生电路 三角波发生电路
页:
[1]