为了账号安全,请及时绑定邮箱和手机立即绑定

请问有哪位大佬知道该怎么写FPGA实现函数信号发生器的报告吗?

请问有哪位大佬知道该怎么写FPGA实现函数信号发生器的报告吗?

慕盖茨4494581 2021-09-19 13:10:45
如题所示!
查看完整描述

1 回答

?
尚方宝剑之说

TA贡献1788条经验 获得超4个赞

锯齿波VHDL编程源程序:
library ieee;
use ieee.std_logic.1164.all;
entity jvchi2 is
potr(clk2,up_down: in std_logic;
dd2:buffer integer range 255 downto 0);
end;
architecture one of jvchi2 is
signal d,temp:integer range 255 downto 0;
begin
process(clk2)
begin
if(clk2’event and clk2=’1’) then
if temp<198 then temp<=temp+2;
else temp<=0;
end if;
end if;
end process;
process(temp,up_down)
begin
if up_down=’0’ then d<=temp;
else d<=198-temp;
end if;
end process;
dd2<=d;
end;



查看完整回答
反对 回复 2021-09-23
  • 1 回答
  • 0 关注
  • 232 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信