打印

(VHDL)奇数或偶数分频器如何设计?还有占空比怎么设计的啊?

[复制链接]
2574|5
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
Death格雷尔|  楼主 | 2013-7-9 21:08 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
这个程序对么 是奇分频还是偶分频啊?
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity fpq is
port(
     clk:in std_logic;
     clkout:out std_logic);
end entity fpq;
architecture one of fqp is
signal cnt:std_logic_vector(1 downto 0);
begin
process(clk)
veriable cnt:integer range 0 to 3;
begin
if rising_edge(clk) then
  if cnt=3
    then cnt :=0;
    else cnt :=cnt+1;
end if;
if cnt< 2
  then clkout< ='0';
else clkout<='1';
end if;
end if;
end process;
end architecture one;
下面这个是占空比50%的  请问占空比怎么更改啊?
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity fpq is
port(
     clk:in std_logic;
     clkout:out std_logic);
end entity fpq;
architecture one of fqp is
signal cnt:std_logic_vector(1 downto 0);
begin
process(clk)
begin
if rising_edge(clk) then
  if cnt="11"
    then clkout<="00";
    else cnt <=cnt+1;
end if;
if cnt="00"or cnt="01"
  then clkout< ='0';
else clkout<='1';
eng if;
end if;
end process;
end architecture one;
谢谢大家 帮个忙哦 嘿嘿

相关帖子

沙发
GoldSunMonkey| | 2013-7-9 23:19 | 只看该作者
板凳
GoldSunMonkey| | 2013-7-9 23:19 | 只看该作者
请看这篇**

使用特权

评论回复
地板
GoldSunMonkey| | 2013-7-9 23:20 | 只看该作者
占空比不好设计,靠代码是不能任意占空比的。

使用特权

评论回复
5
Death格雷尔|  楼主 | 2013-7-10 20:01 | 只看该作者
GoldSunMonkey 发表于 2013-7-9 23:20
占空比不好设计,靠代码是不能任意占空比的。

非常感谢

使用特权

评论回复
6
GoldSunMonkey| | 2013-7-10 20:33 | 只看该作者
Death格雷尔 发表于 2013-7-10 20:01
非常感谢

别客气,亲

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

9

主题

27

帖子

1

粉丝