mips without optimize
This commit is contained in:
13
backend/mips/instr/MipsSyscall.java
Normal file
13
backend/mips/instr/MipsSyscall.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package backend.mips.instr;
|
||||
|
||||
import backend.mips.instr.type.MipsType;
|
||||
|
||||
public class MipsSyscall extends MipsInstr {
|
||||
public MipsSyscall() {
|
||||
super(MipsType.SYSCALL);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "syscall\n";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user