Prev Problem
Next Problem

12. Vector Bitwise Operators

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

 

 

Code

/*Write your code here*/
module bitwise_ops_demo (
    input wire [3:0] A,
    input wire [3:0] B,
    output wire [3:0] AND_OUT,
    output wire [3:0] OR_OUT,
    output wire [3:0] XOR_OUT,
    output wire [3:0] XNOR_OUT
);
assign AND_OUT = A & B;
assign OR_OUT = A | B;
assign XOR_OUT = A ^ B;
assign XNOR_OUT = ~XOR_OUT;
    // TODO: Assign outputs using part-selects and bit-selects
    
endmodule

 

Was this helpful?
Upvote
Downvote