Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
ALUop should be 2 bits.
  • Loading branch information
zhs04001 committed Apr 2, 2018
1 parent e0f9af9 commit dbd129f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utilities.java
Expand Up @@ -66,7 +66,7 @@ public class Utilities {
print_signal("Branch", sig.Branch, 1);
print_signal("MemRead", sig.MemRead, 1);
print_signal("MemtoReg", sig.MemtoReg, 1);
print_signal("ALUOp", sig.ALUOp, 1);
print_signal("ALUOp", sig.ALUOp, 2);
print_signal("MemWrite", sig.MemWrite, 1);
print_signal("ALUSrc", sig.ALUSrc, 1);
print_signal("RegWrite", sig.RegWrite, 1);
Expand Down

0 comments on commit dbd129f

Please sign in to comment.