第一范文网 - 专业文章范例文档资料分享平台

任意波形信号发生器

来源:用户分享 时间:2025/6/6 9:36:29 本文由loading 分享 下载这篇文档手机版
说明:文章内容仅供预览,部分内容可能不全,需要完整文档或者需要复制内容,请下载word后使用。下载word有问题请添加微信号:xxxxxxx或QQ:xxxxxx 处理(尽可能给您提供完整文档),感谢您的支持与谅解。

五、总结与体会

24

参考文献

[1]杨颂华等. 电子线路EDA仿真技术[M]. 西安:西安交通大学出版社,2008. [2]刘昌华.数字逻辑EDA设计与实践[M].北京:国防工业出版社,2006. [3]王振红等.电子电路综合设计实例集萃[M].北京:化学工业出版社,2008.

[4]谭会生等.EDA技术及应用(第二版)[M].西安:西安电子科技大学出版社,2002.

25

附录

--------------------------------------------------------------------------------------------------------------------- --------------斜波------------------------------------------------------------------------------------------------- library ieee;

use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity obl is

port(clk ,reset: in std_logic; Q:out std_logic_vector(7 downto 0)); end entity obl; architecture d of obl is

signal tmp: std_logic_vector(7 downto 0); begin

process(clk,reset)is begin

if(reset='1') then tmp<=\elsif(clk'event and clk='1') then

if(tmp<\

tmp<=tmp+'1';

else

tmp<=\

end if;

end if;

Q<=tmp; end process; end architecture d;

----------锯齿波------------------------------------------------------------------------------------------------- library ieee;

26

use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity dlt is

port(clk ,reset: in std_logic; Q:out std_logic_vector(7 downto 0)); end entity dlt; architecture d of dlt is

signal tmp: std_logic_vector(7 downto 0); begin

process(clk,reset)is begin

if(reset='1') then tmp<=\elsif(clk'event and clk='1') then

if(tmp<\

tmp<=tmp+'1';

else

tmp<=\

end if;

end if;

Q<=tmp; end process; end architecture d;

----------正弦波------------------------------------------------------------------------------------------------- library ieee;

use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; entity sin is

port(clk ,reset: in std_logic;

27

搜索更多关于: 任意波形信号发生器 的文档
任意波形信号发生器.doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
本文链接:https://www.diyifanwen.net/c2j4yv2yzo60fvqu4zj5x_7.html(转载请注明文章来源)
热门推荐
Copyright © 2012-2023 第一范文网 版权所有 免责声明 | 联系我们
声明 :本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果我们转载的作品侵犯了您的权利,请在一个月内通知我们,我们会及时删除。
客服QQ:xxxxxx 邮箱:xxxxxx@qq.com
渝ICP备2023013149号
Top