module (
,
input [1:0] ,
output[3:0]
);
assign
module ;
// Declare the input and output variables
reg [1:0] ;
reg [1:0] ;
wire [3:0] ;
uut (
,
,
,
initial begin
// Defining the input waves A, B
A = 2'b00; B = 2'b00;
#1
A = 2'b00; B = 2'b11;
#1
A = 2'b01; B = 2'b01;
#1
A = 2'b10; B = 2'b01;
#1
A = 2'b11; B = 2'b11;
#1
A = 2'b00; B = 2'b01;
#1
A = 2'b10; B = 2'b10;
#1
A = 2'b11; B = 2'b10
#1
$finish;
end