Prev Problem
Next Problem

87. 4-bit Bidirectional Shift Register

Back To All Submissions
Previous Submission
Next Submission

Solution of the code

How do you plan to solve it?

Just keep this in mind!!!!

Functional behavior

  • RST=1 (any time) → Q=4'b0000.
  • On posedge CLK with RST=0:
    • DIR=1 → shift left: Q <= {Q[2:0], serial_in}.
    • DIR=0 → shift right: Q <= {serial_in, Q[3:1]}.

 

 

Code

module shift_reg_bidirectional (
    input        CLK,
    input        RST,
    input        DIR,
    input        serial_in,
    output reg [3:0] Q
);
    // Write your code here

    always @(posedge CLK or posedge RST) begin
        if(RST) 
            Q <= 4'b0000;
        else if(DIR)
            Q <= {Q[2:0], serial_in};
        else
            Q <= {serial_in, Q[3:1]};

    end

    
endmodule

 

Was this helpful?
Upvote
Downvote