题解 | #异步复位的串联T触发器#

异步复位的串联T触发器

https://www.nowcoder.com/practice/9c8cb743919d405b9dac28eadecddfb5

`timescale 1ns/1ns
module Tff_2 (
input wire data, clk, rst,
output reg q  
);
//*************code***********//
    reg    q_temp;
    always@(posedge clk or negedge rst) begin
        if(!rst)
            q_temp <= 1'b0;
        else if(data)
            q_temp <= ~q_temp;
        else
            q_temp <= q_temp;
    end
    always@(posedge clk or negedge rst) begin
        if(!rst)
            q <= 1'b0;
        else if(q_temp)
            q <= ~q;
        else
            q <= q;
    end
//*************code***********//
endmodule
全部评论

相关推荐

10-07 23:57
已编辑
电子科技大学 Java
八街九陌:博士?客户端?开发?啊?
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务