当前位置: 首页 > 工具软件 > Q4M > 使用案例 >

Exams/m2014 q4k

蔚俊人
2023-12-01
module top_module (
    input clk,
    input resetn,   // synchronous reset
    input in,
    output out);
    
    reg o1,o2,o3;
    always@(posedge clk) begin
        if(~resetn) begin
            out<=0;
            o1<=0; 
            o2<=0;
            o3<=0;
        end
        else begin
            o1<=in; 
            o2<=o1;
            o3<=o2;
            out<=o3;
        end
    end

endmodule

 类似资料:

相关阅读

相关文章

相关问答