乐曲硬件演奏电路设计(12)
发布时间:2021-06-11
发布时间:2021-06-11
乐曲演奏广泛用于自动答录装置、手机铃声、集团电话、及智能仪器仪表设备。实现方法有许多种,随着FPGA集成度的提高,价格下降,EDA设计工具更新换代,功能日益普及与流行,使这种方案的应用越来越多。如今的数字逻辑设计者面临日益缩短的上市时间的压力,不得不进行上万门的设计,同时设计者不允许以牺牲硅的效率达到保持结构的独特性。使用现今的EDA软件工具来应付这些问题,并不是一件简单的事情。FPGA预装了很多已构造好的参数
spks: out std_logic);
end entity speakera;
architecture one of speakera is
signal preclk,fullspks: std_logic;
begin
divideclk: process(clk)
variable count4: std_logic_vector(3 downto 0);
begin
preclk<='0';
if count4>11 then preclk<='1';count4:="0000";
elsif clk'event and clk='1' then count4:=count4+1;
end if;
end process;
genspks: process(preclk,tone)--11
variable count11: std_logic_vector(10 downto 0);
begin
if preclk'event and preclk='1'then
if count11=16#7ff#then count11:=tone;fullspks<='1';
else count11:=count11+1;fullspks<='0';end if;
end if;
end process;
delayspks: process(fullspks)
variable count2: std_logic;
begin