@@ -1188,7 +1188,7 @@ public void simulate(ProgramStatement statement) throws ProcessingException
11881188new BasicInstruction ("syscall" ,
11891189"Issue a system call : Execute the system call specified by value in $v0" ,
11901190BasicInstructionFormat .R_FORMAT ,
1191- "00000000000 00000 00000 00000 001100" ,
1191+ "000000ccccc ccccc ccccc ccccc 001100" ,
11921192new SimulationCode ()
11931193 {
11941194public void simulate (ProgramStatement statement )throws ProcessingException
@@ -2829,7 +2829,7 @@ public void simulate(ProgramStatement statement) throws ProcessingException
28292829new BasicInstruction ("teq $t1,$t2" ,
28302830"Trap if equal : Trap if $t1 is equal to $t2" ,
28312831BasicInstructionFormat .R_FORMAT ,
2832- "000000 fffff sssss00000 00000 110100" ,
2832+ "000000 fffff sssssccccc ccccc 110100" ,
28332833new SimulationCode ()
28342834 {
28352835public void simulate (ProgramStatement statement )throws ProcessingException
@@ -2863,7 +2863,7 @@ public void simulate(ProgramStatement statement) throws ProcessingException
28632863new BasicInstruction ("tne $t1,$t2" ,
28642864"Trap if not equal : Trap if $t1 is not equal to $t2" ,
28652865BasicInstructionFormat .R_FORMAT ,
2866- "000000 fffff sssss00000 00000 110110" ,
2866+ "000000 fffff sssssccccc ccccc 110110" ,
28672867new SimulationCode ()
28682868 {
28692869public void simulate (ProgramStatement statement )throws ProcessingException
@@ -2897,7 +2897,7 @@ public void simulate(ProgramStatement statement) throws ProcessingException
28972897new BasicInstruction ("tge $t1,$t2" ,
28982898"Trap if greater or equal : Trap if $t1 is greater than or equal to $t2" ,
28992899BasicInstructionFormat .R_FORMAT ,
2900- "000000 fffff sssss00000 00000 110000" ,
2900+ "000000 fffff sssssccccc ccccc 110000" ,
29012901new SimulationCode ()
29022902 {
29032903public void simulate (ProgramStatement statement )throws ProcessingException
@@ -2914,7 +2914,7 @@ public void simulate(ProgramStatement statement) throws ProcessingException
29142914new BasicInstruction ("tgeu $t1,$t2" ,
29152915"Trap if greater or equal unsigned : Trap if $t1 is greater than or equal to $t2 using unsigned comparision" ,
29162916BasicInstructionFormat .R_FORMAT ,
2917- "000000 fffff sssss00000 00000 110001" ,
2917+ "000000 fffff sssssccccc ccccc 110001" ,
29182918new SimulationCode ()
29192919 {
29202920public void simulate (ProgramStatement statement )throws ProcessingException
@@ -2972,7 +2972,7 @@ public void simulate(ProgramStatement statement) throws ProcessingException
29722972new BasicInstruction ("tlt $t1,$t2" ,
29732973"Trap if less than: Trap if $t1 less than $t2" ,
29742974BasicInstructionFormat .R_FORMAT ,
2975- "000000 fffff sssss00000 00000 110010" ,
2975+ "000000 fffff sssssccccc ccccc 110010" ,
29762976new SimulationCode ()
29772977 {
29782978public void simulate (ProgramStatement statement )throws ProcessingException
@@ -2989,7 +2989,7 @@ public void simulate(ProgramStatement statement) throws ProcessingException
29892989new BasicInstruction ("tltu $t1,$t2" ,
29902990"Trap if less than unsigned : Trap if $t1 less than $t2, unsigned comparison" ,
29912991BasicInstructionFormat .R_FORMAT ,
2992- "000000 fffff sssss00000 00000 110011" ,
2992+ "000000 fffff sssssccccc ccccc 110011" ,
29932993new SimulationCode ()
29942994 {
29952995public void simulate (ProgramStatement statement )throws ProcessingException