Changed From ALUZero to Cond

This commit is contained in:
Ibrahim 2020-12-02 14:33:42 +00:00
parent a56410ceae
commit 1f1cb53352

View file

@ -173,10 +173,10 @@ module mips_cpu_alu(
BNE: begin BNE: begin
if A<=0 begin if A<=0 begin
ALUOut = 0; Cond = 1;
end end
else begin else begin
ALUOut = ALUOut; Cond = 0;
end end
end end