Renamed shifting for incoming shift_right_arithmetic
This commit is contained in:
@@ -36,12 +36,12 @@ module ALU(
|
||||
.A(operand0),
|
||||
.B(operand1),
|
||||
.C(result_E));
|
||||
// F (101) - Shift Logical Left
|
||||
shift_logical_left sll(
|
||||
// F (101) - Shift Left
|
||||
shift_left sl(
|
||||
.A(operand0),
|
||||
.B(result_F));
|
||||
// G (110) - Shift Logical Right
|
||||
shift_logical_right slr(
|
||||
shift_right_logical srl(
|
||||
.A(operand0),
|
||||
.B(result_G));
|
||||
// H (111) //slt
|
||||
|
||||
Reference in New Issue
Block a user