在线咨询
eetop公众号 创芯大讲堂 创芯人才网
切换到宽版

EETOP 创芯网论坛 (原名:电子顶级开发网)

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 7161|回复: 6

信号上升沿检测,下降沿检测,边沿检测

[复制链接]
发表于 2009-6-5 04:08:06 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x
//上升沿检测,要求信号保持时间至少一个时钟周期
module rising_edge_check(clock, signal, rising_flag);
    input clock;
    input signal;//input signal
    output rising_flag;//rising edge flag
reg [2:0] temp=3'b000;
always @(posedge clock)
  temp<={temp[1:0],signal};
assign rising_flag=(temp[1:0]==2'b01)?1'b1:1'b0;
endmodule
//testbench
module test_rising_edge_check_v;
// Inputs
reg clock;
reg signal;
// Outputs
wire rising_flag;
// Instantiate the Unit Under Test (UUT)
rising_edge_check uut (
  .clock(clock),
  .signal(signal),
  .rising_flag(rising_flag)
);
initial begin
  // Initialize Inputs
  clock = 0;
  signal = 0;
  // Wait 100 ns for global reset to finish
  #100;
        
  // Add stimulus here
  signal=1;
  #500;
  signal=0;
  #500;
  signal=1;
  #200;
  signal=0;
  #100;
  signal=1;
  #300;
  signal=0;
end
   always #100 clock=~clock   ;
endmodule
//下降沿检测,要求信号保持时间至少一个时钟周期
module falling_edge_check(clock, signal, falling_flag);
    input clock;
    input signal;
    output falling_flag;
reg [2:0] temp=3'b111;
always @(posedge clock)
  temp<={temp[1:0],signal};
assign falling_flag=(temp[1:0]==2'b10)?1'b1:1'b0;
endmodule
//testbench
module test_falling_edge_check_v;
// Inputs
reg clock;
reg signal;
// Outputs
wire falling_flag;
// Instantiate the Unit Under Test (UUT)
falling_edge_check uut (
  .clock(clock),
  .signal(signal),
  .falling_flag(falling_flag)
);
initial begin
  // Initialize Inputs
  clock = 0;
  signal = 0;
  // Wait 100 ns for global reset to finish
  #100;
        
  // Add stimulus here
  signal=1;
  #500;
  signal=0;
  #500;
  signal=1;
  #200;
  signal=0;
  #100;
  signal=1;
  #300;
  signal=0;
end
   always #100 clock=~clock   ;  
endmodule
发表于 2010-7-5 12:26:33 | 显示全部楼层
how can you implement it without a clk signal,
From my point of view, your code is more like a sequence detector (0->1) without clk, which is not correct, and also not synthesizable.
发表于 2010-7-28 10:32:53 | 显示全部楼层
和楼上的同问,若是不使用时钟,怎么检测呢?
发表于 2010-9-16 15:48:37 | 显示全部楼层
ding~~~~~~~
发表于 2010-9-18 20:57:08 | 显示全部楼层
二楼的问错了吧?如果没有时钟,怎么检测信号的上升沿?如果信号不是时钟的话,只能采取延迟逻辑了,但不能进行这种设计,至少数字逻辑上不允许这种设计(定制的特定工艺的IP除外)。
上述的电路实际上是可综合的,不过缺少了复位的话,会给综合、DFT等带来问题。如果带上复位信号就比较完善了。
发表于 2010-9-19 16:45:38 | 显示全部楼层
小兄弟们,思想是正确的,代码质量还有待提高哦,呵呵
发表于 2010-10-18 15:36:30 | 显示全部楼层
不明白什么意思。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

站长推荐 上一条 /2 下一条


小黑屋| 手机版| 关于我们| 联系我们| 在线咨询| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2024-11-22 20:12 , Processed in 0.028859 second(s), 8 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
快速回复 返回顶部 返回列表