6132|13

61

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

下降沿jk触发器 我的算法有问题,谁能帮我指出来? [复制链接]

library ieee;
use ieee.std_logic_1164.all;

entity jkff is
port(j,k,cp,r,s:in std_logic;
          q,qb :out std_logic);
end jkff;

architecture rtl of jkff is
signal q_temp :std_logic:='0';
signal qb_temp :std_logic:='1';
begin
process(r,s,j,k,cp)
begin
if(r='0' and s='1')then
   q_temp<='0';
   qb_temp<='1';
elsif(r='1'and s='0')then
   q_temp<='1';
   qb_temp<='0';
elsif(cp'event and cp='0')then
      if(q_temp='0') then
         q_temp<=j;qb_temp<=not q_temp;

      else q_temp<=not k;qb_temp<=not q_temp;

      
      end if;
      end if;

q<=q_temp;
qb<=qb_temp;
end process;
end rtl;

最新回复

支持搂主,收藏  详情 回复 发表于 2008-5-1 08:38
点赞 关注

回复
举报

57

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
这人好少。
 
 

回复

75

帖子

0

TA的资源

一粒金砂(中级)

板凳
 
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;

---- Uncomment the following library declaration if instantiating
---- any Xilinx primitives in this code.
--library UNISIM;
--use UNISIM.VComponents.all;

entity jkff is
    Port ( j : in std_logic;
           k : in std_logic;
           clk : in std_logic;
           s : in std_logic;
           r : in std_logic;
           q : out std_logic;
           qb : out std_logic);
end jkff;

architecture Behavioral of jkff is
                        signal q_tmp,qb_tmp:std_logic;
begin
                                process(clk,s,r)
                                 begin
                                 if(s='0'and r='1')then
                                 q_tmp<='1';
                                 qb_tmp<='0';
                                 elsif(s='1'and r='0')then
                                 q_tmp<='0';
              qb_tmp<='1';
                                  elsif(clk'event and clk='1')then
                                  if(j='0' and k='1')then
                                  q_tmp<='0';
                                  qb_tmp<='1';
                                  elsif(j='1'and k='0')then
                                  q_tmp<='1';
                                  qb_tmp<='0';
                                  elsif(j='1'and k='1')then
                                  q_tmp<=not q_tmp;
                                  qb_tmp<=not qb_tmp;
                                  end if;
                                  end if;
                                        end process;
                                        q<=q_tmp;
                                        qb<=qb_tmp;


end Behavioral;
 
 
 

回复

65

帖子

0

TA的资源

一粒金砂(初级)

4
 
我知道wl2659753的这种写法。那我的为什么不对呢?
 
 
 

回复

72

帖子

0

TA的资源

一粒金砂(初级)

5
 
up
 
 
 

回复

67

帖子

0

TA的资源

一粒金砂(初级)

6
 
up
 
 
 

回复

74

帖子

0

TA的资源

一粒金砂(初级)

7
 
问题出现在
elsif(cp'event and cp='0')then
      if(q_temp='0') then
        q_temp <=j;qb_temp <=not q_temp;

      else q_temp <=not k;qb_temp <=not q_temp;

要尊从JK触发条件来写语句。
 
 
 

回复

70

帖子

0

TA的资源

一粒金砂(初级)

8
 
引用 6 楼 aaronstone 的回复:
问题出现在
elsif(cp'event and cp='0')then  
      if(q_temp='0') then  
        q_temp  <=j;qb_temp  <=not q_temp;  

      else q_temp  <=not k;qb_temp  <=not q_temp;  

要尊从JK触发条件来写语句。


你说的我还不太明白,但我是用公式导出的。q=j/q+/kq
 
 
 

回复

60

帖子

0

TA的资源

一粒金砂(初级)

9
 
时序电路里要考虑信号发生的顺序
而不能单纯用公式来写电路
 
 
 

回复

77

帖子

0

TA的资源

一粒金砂(初级)

10
 
引用 8 楼 aaronstone 的回复:
时序电路里要考虑信号发生的顺序
而不能单纯用公式来写电路

请问是

q_temp   <=j没考虑信号发生的顺序
还是这个
qb_temp   <=not q_temp?

谢谢。
 
 
 

回复

63

帖子

0

TA的资源

一粒金砂(初级)

11
 
根据真值表你的算法不对阿
clk  s  r  j  k   q    qb
------------------------
X    0  1  X  X   1    0
X    1  0  X  X   0    1
↑or↓      0  1   0    1
↑or↓      1  0   1    0
↑or↓      1  1  翻转  翻转

上升沿或下降沿来的时候,你得条件写的不对阿


 
 
 

回复

74

帖子

0

TA的资源

一粒金砂(初级)

12
 
学习下
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(初级)

13
 
等待牛人来答.
 
 
 

回复

69

帖子

0

TA的资源

一粒金砂(初级)

14
 
支持搂主,收藏
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/6 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表