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

基于FPGA任意倍数分频器设计 (5)

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

第 44 页

else

if f=\

data6<=2*d5+c5;data7<=2*b5+a5;

else

if(data5>10) then

data6<=1;data7<=data5-10;

else

data6<=0;data7<=data5;

end if;

end if;

end if;

else

data6<=12;data7<=12;

end if;

end process; process(f) begin

case f is

when \when \when \when others=>data8<=12;

end case;

end process; process(clk,rst) begin

if(rst='0')then

cnt_scan<=\

elsif(clk'event and clk='1')then

第 45 页

cnt_scan<=cnt_scan+1;

end if; end process; process(cnt_scan) begin

case cnt_scan is

when\when\when\when others=>null;

end case;

end process; process(en_xhdl) begin

case en_xhdl is

when \when \when \when others => null;

end case;

end process; process(data4) begin

case data4 is

when 0 =>

dataout_xhdl1 <= \ when 1 =>

dataout_xhdl1 <= \ when 2 =>

第 46 页

dataout_xhdl1 <= \ when 3 =>

dataout_xhdl1 <= \ when 4 =>

dataout_xhdl1 <= \ when 5 =>

dataout_xhdl1 <= \ when 6 =>

dataout_xhdl1 <= \ when 7 =>

dataout_xhdl1 <= \ when 8 =>

dataout_xhdl1 <= \ when 9 =>

dataout_xhdl1 <= \ when 10 =>

dataout_xhdl1 <= \ when 11 =>

dataout_xhdl1 <= \ when 12 =>

dataout_xhdl1 <= \ when others=>null;

end case;

end process; end arch;

第 47 页

附录A8 mux51模块的实现程序

library ieee;

use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity mux51 is port(

a,b,c,d,e:in std_logic; y1,y2,y3,y4,y5:in std_logic; y:out std_logic;

f1,f2,f3,f4,f5:out std_logic );

end mux51;

architecture rtl of mux51 is

signal m:std_logic_vector(4 downto 0); begin

m<=a&b&c&d&e; process(m) begin

case m is

when \when \when \when \when \when others=>f1<='0';f2<='0';f3<='0';f4<='0';f5<='0';y<='0'; end case;

end process; end rtl;

第 48 页

附录B顶层文件设计原理图

图B1 顶层文件设计原理图

搜索“diyifanwen.net”或“第一范文网”即可找到本站免费阅读全部范文。收藏本站方便下次阅读,第一范文网,提供最新初中教育基于FPGA任意倍数分频器设计 (5)全文阅读和word下载服务。

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