题解 | #信号顺序调整#

信号顺序调整

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

全部评论

相关推荐

小叮当411:应该是1-3个月吧
点赞 评论 收藏
分享
星辰再现:裁员给校招生腾地方
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
07-10 12:05
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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