毕业论文论文范文课程设计实践报告法律论文英语论文教学论文医学论文农学论文艺术论文行政论文管理论文计算机安全
您现在的位置: 毕业论文 >> 报告 >> 正文

乐曲硬件演奏电路设计

更新时间:2008-7-5:  来源:毕业论文

乐曲硬件演奏电路设计
《EDA技术与VHDL》实验报告
一、实验设计要求
  学习利用实验6-3的数控分频器设计硬件乐曲演奏电路,即设计电子琴,硬件测试可用实验电路模式3。
二、设计原理
 主系统由三个模块组成,有TONETABA.VHD,NOTETABS.VHD和SPCAKERA.VHD,
三、实验程序
library ieee;--songer主程序
use ieee.std_logic_1164.all;
entity songer is
    port(clk12mhz:in std_logic;
         clk8hz:in std_logic;
         code1:out std_logic_vector(3 downto 0);
         high1:out std_logic;
         spkout:out std_logic);
    end;
architecture one of songer is
   component notetabs
    port(clk:in std_logic;
         toneindex:out std_logic_vector(3 downto 0));
   end component;
   component tonetaba
    port(index:in std_logic_vector(3 downto 0);
         code:out std_logic_vector(3 downto 0);
         high:out std_logic;
         tone:out std_logic_vector(10 downto 0));
   end component;
   component speakera
    port(clk:in std_logic;
         tone:in std_logic_vector(10 downto 0);
         spks:out std_logic);
   end  component;
   signal tone:std_logic_vector(10 downto 0);
   signal toneindex:std_logic_vector(3 downto 0);
begin
u1:notetabs  port map(clk=>clk8hz,toneindex=>toneindex);
u2:tonetaba  port map(index=>toneindex,tone=>tone,code=>code1,high=>high1);
u3:speakera  port map(clk=>clk12mhz,tone=>tone,spks=>spkout);
end;
library ieee;--speaker程序
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity speakera is
    port( clk:in std_logic;
          tone:in std_logic_vector(10 downto 0);
          spks:out std_logic);
end;
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=15 then preclk<='1';count4:="0000";
    elsif clk'event and clk='1' then count4:=count4+1;
    end if;74

[1] [2] 下一页

乐曲硬件演奏电路设计下载如图片无法显示或论文不完整,请联系qq752018766
设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©751com.cn 辣文论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。