完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
扫一扫,分享给好友
这是原理图,做的是360点的3相正弦波,就是每个输出的相位差120度 9位累加器代码: library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity counter_9bit is port( clk : in std_logic; q : out std_logic_vector(8 downto 0) ); end entity; architecture one of counter_9bit is signal p : std_logic_vector(8 downto 0):="000000000"; begin process(clk) begin if clk'event and clk ='1' then if p < "101100011" 数值355 then p <= p+1;q<=p; else p <="000000000";q<=p; end if; end if; end process; end architecture; 地址移位器Add1代码: library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity add1 is port( q : in std_logic_vector(8 downto 0); q1 : out std_logic_vector(8 downto 0) ); end entity; architecture one of add1 is begin process(q) begin if q < "0011101111" 数值119 then q1<=q+"011110000"; 数值120 else q1<=q-"001111000"; 数值240 end if; end process; end architecture; 地址移位器add2代码: library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity add2 is port( q : in std_logic_vector(8 downto 0); q2 : out std_logic_vector(8 downto 0) ); end entity; architecture one of add2 is begin process(q) begin if q < "011110111" 数值239 then q2<=q+"001111000"; 数值120 else q2<=q-"011110000" ; 数值240 end if; end process; end architecture; |
|
相关推荐
1个回答
|
|
|
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
1421 浏览 1 评论
1215 浏览 0 评论
矩阵4x4个按键,如何把识别结果按编号01-16(十进制)显示在两个七段数码管上?
1426 浏览 0 评论
913 浏览 0 评论
2229 浏览 0 评论
1432 浏览 35 评论
5617 浏览 113 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-22 23:51 , Processed in 0.593293 second(s), Total 72, Slave 54 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号