题解 | #信号顺序调整#

信号顺序调整

https://www.nowcoder.com/practice/3f6db9ded7ca4de7981c0a826e924563


`timescale 1ns/1ns

module top_module(
    input [15:0] in,
    input clk,
    input rst_n,
    output reg [15:0] out
);

    reg [2:0] cnt;
    reg [15:0] out_reg;

    always@(posedge clk or negedge rst_n)
        if(!rst_n)
            cnt <= 3'd0;
        else if(cnt == 3'd4)
            cnt <= 3'd0;
        else
            cnt <= cnt + 1'b1; 

    always@(posedge clk or negedge rst_n)
        begin
            if(!rst_n)
                begin
                    out_reg <= 16'b0;
                    out <= 16'd0;
                end
            else if(cnt == 3'd4)
                out <= out_reg;
            else
                out_reg <= {in[3:0],out_reg[15:4]};
        end
endmodule

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-01 12:22
点赞 评论 收藏
分享
缒梦&独舞:这家公司是这样的,去年给我实习offer了,不过也是面着玩儿的,他周六还要去做公益志愿活动
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务