mirror of
https://github.com/supleed2/ELEC50010-IAC-CW.git
synced 2024-11-10 01:35:49 +00:00
Fix display appearing at the end of log file
This commit is contained in:
parent
6c400f3567
commit
2d9cca262d
|
@ -96,7 +96,7 @@ always @(*) begin
|
||||||
end else if ((op == JAL) || ((op==REGIMM)&&((rt==BGEZAL) || (rt==BLTZAL))))begin
|
end else if ((op == JAL) || ((op==REGIMM)&&((rt==BGEZAL) || (rt==BLTZAL))))begin
|
||||||
CtrlRegDst = 2'd2; //const reg 31, for writing to the link register
|
CtrlRegDst = 2'd2; //const reg 31, for writing to the link register
|
||||||
$display("CTRLREGDST: Link");
|
$display("CTRLREGDST: Link");
|
||||||
end else begin CtrlRegDst = 1'bx; $display("xxxxxxxxxxxxxx");end//Not all instructions are encompassed so, added incase for debug purposes
|
end else begin CtrlRegDst = 1'bx; end//Not all instructions are encompassed so, added incase for debug purposes
|
||||||
|
|
||||||
//CtrlPC logic
|
//CtrlPC logic
|
||||||
if(ALUCond && ((op==BEQ) || (op==BGTZ) || (op==BLEZ) || (op==BNE) || ((op==REGIMM)&&((rt==BGEZ) || (rt==BGEZAL) || (rt==BLTZ) || (rt==BLTZAL)))))begin
|
if(ALUCond && ((op==BEQ) || (op==BGTZ) || (op==BLEZ) || (op==BNE) || ((op==REGIMM)&&((rt==BGEZ) || (rt==BGEZAL) || (rt==BLTZ) || (rt==BLTZAL)))))begin
|
||||||
|
@ -106,7 +106,7 @@ always @(*) begin
|
||||||
$display("Jump PC Ctrl");
|
$display("Jump PC Ctrl");
|
||||||
end else if((op==SPECIAL)&&((funct==JR) || (funct==JALR)))begin
|
end else if((op==SPECIAL)&&((funct==JR) || (funct==JALR)))begin
|
||||||
CtrlPC = 2'd3; // Jumps using Register.
|
CtrlPC = 2'd3; // Jumps using Register.
|
||||||
$display("Ctrl PC Jump Register");
|
//$display("Ctrl PC Jump Register");
|
||||||
end else begin CtrlPC = 2'd0; /*/$display("Ctrl PC No Jump/Branch");*/end // No jumps or branches, just increment to next word
|
end else begin CtrlPC = 2'd0; /*/$display("Ctrl PC No Jump/Branch");*/end // No jumps or branches, just increment to next word
|
||||||
|
|
||||||
//CtrlMemRead and CtrlMemtoReg logic -- Interesting quirk that they have the same logic where both are concerned. Makes sense bc you'd only want to select the read data out when the memory itself is read enabled.
|
//CtrlMemRead and CtrlMemtoReg logic -- Interesting quirk that they have the same logic where both are concerned. Makes sense bc you'd only want to select the read data out when the memory itself is read enabled.
|
||||||
|
@ -125,7 +125,7 @@ always @(*) begin
|
||||||
end else if ((op==SPECIAL)&&(funct == MFLO))begin
|
end else if ((op==SPECIAL)&&(funct == MFLO))begin
|
||||||
CtrlMemtoReg = 3'd4;//write data port of regfile is fed from ALULo
|
CtrlMemtoReg = 3'd4;//write data port of regfile is fed from ALULo
|
||||||
end else begin CtrlMemRead = 1'bx;end//Not all instructions are encompassed so, added incase for debug purposes
|
end else begin CtrlMemRead = 1'bx;end//Not all instructions are encompassed so, added incase for debug purposes
|
||||||
$display("OP: %d, Funct: %d", op, funct);
|
//$display("OP: %d, Funct: %d", op, funct);
|
||||||
//CtrlALUOp Logic
|
//CtrlALUOp Logic
|
||||||
if((op==ADDIU) || ((op==SPECIAL)&&(funct==ADDU)))begin
|
if((op==ADDIU) || ((op==SPECIAL)&&(funct==ADDU)))begin
|
||||||
CtrlALUOp = 5'd0; //ADD from ALUOps
|
CtrlALUOp = 5'd0; //ADD from ALUOps
|
||||||
|
|
|
@ -1,67 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# arithmetic
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl addu #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl addiu #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl subu #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl and #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl andi #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl or #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl ori #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl xor #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl xori #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl div #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl divu #pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl mthi #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl mtlo #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl mult #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl multu #Pass
|
|
||||||
|
|
||||||
|
|
||||||
# branches
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl beq #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl bgez #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl bgezal #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl bgtz #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl blez #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl bltz #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl bltzal #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl bne #Pass
|
|
||||||
|
|
||||||
# jumps
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl j #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl jalr #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl jal #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl jr #Pass
|
|
||||||
|
|
||||||
# shift
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl sll #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl srl #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl sra #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl srav #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl sllv #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl srlv #Pass
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# load & store
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl lw #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl lb #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl lbu #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl lh #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl lhu #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl lui #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl lwl #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl lwr #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl sw #Pass
|
|
||||||
#./test/test_mips_cpu_harvard.sh rtl sb #Once switched to bus
|
|
||||||
#./test/test_mips_cpu_harvard.sh rtl sh #Once switched to bus
|
|
||||||
|
|
||||||
|
|
||||||
# set on less than **Branch delay slots dont work on these...
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl slti #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl sltiu #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl slt #Pass
|
|
||||||
./test/test_mips_cpu_harvard.sh rtl sltu #Pass
|
|
||||||
|
|
||||||
|
|
|
@ -63,8 +63,8 @@ module mips_cpu_harvard_tb;
|
||||||
@(posedge clk);
|
@(posedge clk);
|
||||||
//$display("Register v0: %d", register_v0);
|
//$display("Register v0: %d", register_v0);
|
||||||
//$display("Reg File Write data: %d", cpuInst.in_writedata);
|
//$display("Reg File Write data: %d", cpuInst.in_writedata);
|
||||||
$display("Reg File Out Read data: %h", cpuInst.out_readdata1);
|
//$display("Reg File Out Read data: %h", cpuInst.out_readdata1);
|
||||||
$display("Reg File opcode: %b", cpuInst.regfile.opcode);
|
//$display("Reg File opcode: %b", cpuInst.regfile.opcode);
|
||||||
//$display("ALU output: %h", cpuInst.out_ALURes);
|
//$display("ALU output: %h", cpuInst.out_ALURes);
|
||||||
//$display("ALU input B: %h", cpuInst.alu.B);
|
//$display("ALU input B: %h", cpuInst.alu.B);
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue