-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOutput.java
More file actions
71 lines (58 loc) · 1.62 KB
/
Output.java
File metadata and controls
71 lines (58 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import java.io.*;
public class Output {
final String filename = "OutputFile.txt";
String mipsCode;
//To clear out the previous run
public Output(){
File wipeFile = new File(filename);
wipeFile.delete();
}
private void outToFile() throws IOException {
FileWriter fileWriter = new FileWriter(filename, true);
fileWriter.write(mipsCode + "\n");
fileWriter.close();
}
//For R Instructions
public void setmipsCodeR(String rs, String rt, String rd, int shamt, String funct) {
if(shamt > 0)
mipsCode = funct + " " + rd + ", " + rt + ", " + shamt + "(" + rs + ")";
else
mipsCode = funct + " " + rd + ", " + rt + ", " + rs;
try {
outToFile();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//For I Instructions
public void setmipsCodeI(String opcode, String rs, String rt, String immediate) {
mipsCode = opcode + " " + rs + ", " + rt + ", " + immediate;
try {
outToFile();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//For J Instructions
public void setmipsCodeJ(String opcode, String address) {
mipsCode = opcode + " " + address + "\n";
try {
outToFile();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//For Syscall and anything not an instruction
public void setmipsCodeMisc(String misc) {
mipsCode = misc + "\n";
try {
outToFile();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}