Renamed shifting for incoming shift_right_arithmetic
This commit is contained in:
@@ -665,7 +665,7 @@ module register_tb();
|
||||
end
|
||||
endmodule
|
||||
|
||||
module shift_logical_left(
|
||||
module shift_left(
|
||||
input wire [8:0] A,
|
||||
output wire [8:0] B);
|
||||
|
||||
@@ -674,11 +674,11 @@ module shift_logical_left(
|
||||
endmodule
|
||||
|
||||
//testbench
|
||||
module shift_logical_left_tb();
|
||||
module shift_left_tb();
|
||||
reg [8:0] a;
|
||||
wire [8:0] b;
|
||||
|
||||
shift_logical_left tb0(
|
||||
shift_left tb0(
|
||||
.A(a),
|
||||
.B(b));
|
||||
|
||||
@@ -702,7 +702,7 @@ module shift_logical_left_tb();
|
||||
end
|
||||
endmodule
|
||||
|
||||
module shift_logical_right(
|
||||
module shift_right_logical(
|
||||
input wire [8:0] A,
|
||||
output wire [8:0] B);
|
||||
|
||||
@@ -711,11 +711,11 @@ module shift_logical_right(
|
||||
endmodule
|
||||
|
||||
//testbench
|
||||
module shift_logical_right_tb();
|
||||
module shift_right_logical_tb();
|
||||
reg [8:0] a;
|
||||
wire [8:0] b;
|
||||
|
||||
shift_logical_right tb0(
|
||||
shift_right_logical tb0(
|
||||
.A(a),
|
||||
.B(b));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user