22 lines
397 B
Java
Executable File
22 lines
397 B
Java
Executable File
package backend.mips.instr;
|
|
|
|
import backend.mips.instr.type.MipsType;
|
|
import backend.mips.MipsBuilder;
|
|
|
|
public class MipsInstr {
|
|
private MipsType mt;
|
|
|
|
public MipsInstr(MipsType mt) {
|
|
this.mt = mt;
|
|
MipsBuilder.addMipsInstr(this);
|
|
}
|
|
|
|
public String toString() {
|
|
return "";
|
|
}
|
|
|
|
public MipsType getType() {
|
|
return mt;
|
|
}
|
|
}
|