mips without optimize

This commit is contained in:
colden
2025-12-12 20:14:00 +08:00
parent 84827838e2
commit c94bebf37b
130 changed files with 5462 additions and 4182 deletions

View File

@@ -0,0 +1,16 @@
package backend.mips.instr;
import backend.mips.instr.type.MipsType;
public class MipsAnnotation extends MipsInstr {
private String annotation;
public MipsAnnotation(String anno) {
super(MipsType.ANNOTATION);
this.annotation = anno;
}
public String toString() {
return "# " + this.annotation + "\n";
}
}