Update hardvard.v to match ALU

This commit is contained in:
Aadi Desai 2020-12-02 13:27:37 +00:00
parent c4cae70ffc
commit bd9ae64dc2
2 changed files with 14 additions and 11 deletions

View file

@ -8,15 +8,16 @@ module mips_cpu_alu(
output logic ALUZero, //Is the output of the ALU 0? - used to check result
output logic[31:0] ALUOut, // The ouput of the ALU
input logic[15:0] immediate;
input logic[4:0] shamt
);
input [15:0] immediate;
reg [31:0] SignExtend, ZeroExtend;
input logic[10:6] shamt = instr_readdata[10:6]
);
// Instructions commented out have been accounted for
/* Using an enum to define constants */

View file

@ -41,7 +41,7 @@ logic[4:0] rs = instr_readdata[25:21];
logic[4:0] rt = instr_readdata[20:16];
logic[4:0] rd = RegDst==2'b10 ? 5'b11111 : RegDst==2'b01 ? instr_readdata[15:11] : instr_readdata[20:16];
logic[15:0] immediate = instr_readdata[15:0];
logic[10:6] shamt = instr_readdata[10:6]; // Shamt needed for the sll instruction
logic[4:0] shamt = instr_readdata[10:6]; // Shamt needed for the sll instruction
//ALU Data
@ -94,10 +94,12 @@ alucontrol alucontrol(
);
alu alu(
.aluflags(ALUFlags), //selects the operation carried out by the ALU
.in1(alu_in1), //operand 1
.in2(alu_in2), //operand 2
.zero(ALUZero), //is the result zero, used for checks
.out(ALUOut) //output/result of operation
.ALUFlags(ALUFlags), //selects the operation carried out by the ALU
.A(alu_in1), //operand 1
.B(alu_in2), //operand 2
.ALUzero(ALUZero), //is the result zero, used for checks
.ALUOut(ALUOut), //output/result of operation
.immediate(immediate),
.shamt(shamt)
);
endmodule : mips_cpu_harvard