-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCPU.java
More file actions
384 lines (315 loc) · 10.5 KB
/
CPU.java
File metadata and controls
384 lines (315 loc) · 10.5 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
/*
Title: CPU.java
Name: Dylan Kapustka (Dlk190000)
Instructor: Professor Ozbirn
Course: CS 4348.001 - S21
Date: 03/09/2021
Description: This class simulates a CPU and processes instructions accordingly
*/
import java.io.*;
import java.util.Random;
import java.util.Scanner;
public class CPU {
// declare registers
static int PC = 0; // Program Counter
static int SP = 1000; // Stack Pointer
static int IR = 0; // Instruction Register
static int AC = 0; // Accumulator
static int X = 0;
static int Y = 0;
// restrictions
static int USER_PROGRAM = 1000;
static int SYSTEM_PROGRAM = 2000;
static int USER_STACK_TOP = 1000;
static int SYSTEM_STACK_TOP = 2000;
// interrupt timer
static int timer;
static boolean userMode = true; //checks for kernel mode
static boolean processingInterrupt = false; //Avoid nested interrupt
static int instruction_num = 0; //Check num of instructions
static Scanner reader;
static PrintWriter pw;
static String file;
static InputStream is;
static OutputStream os;
//Constructor
public CPU(InputStream is, OutputStream os, int timer, String file) {
CPU.is = is;
CPU.os = os;
CPU.reader = new Scanner(is);
CPU.pw = new PrintWriter(os);
CPU.timer = timer;
CPU.file = file;
}
public void startCPU() {
try {
// Send file name to memory
pw.printf(file + "\n");
pw.flush();
//Loop keeps open communication between CPU and Memory
while (true) {
//check for timer interrupt and process it
if ((instruction_num % timer) == 0 && !processingInterrupt && instruction_num > 0) {
processingInterrupt = true;
int operand;
userMode = false; //In Kernel mode
operand = SP;
SP = SYSTEM_STACK_TOP;
//Push value
SP--;
pw.printf("WRITE:" + SP + ":" + operand + "\n");
pw.flush();
operand = PC;
PC = 1000;
//Push value
SP--;
pw.printf("WRITE:" + SP + ":" + operand + "\n");
pw.flush();
}
int value = readFromMemory(pw, is, reader, os, PC);
//If value is appropriate, process the instruction
if (value != -1) {
processInstruction(value, pw, is, reader, os);
} else
break;
}
} catch (Exception t) {
t.printStackTrace();
}
}
//Read data in memory
private static int readFromMemory(PrintWriter pw, InputStream is, Scanner reader, OutputStream os, int address) {
//If in usermode and address exceeds to kernel mode, throw an error
if (userMode && (address >= 1000)) {
System.out.println("Memory Violation: Accessing system address 1000 in user mode.");
System.exit(0);
}
//"READ" tells memory to read from address
pw.printf("READ:" + address + "\n");
pw.flush();
String res = reader.next();
return Integer.parseInt(res);
}
// Processes instructions
private static void processInstruction(int value, PrintWriter pw, InputStream is, Scanner reader, OutputStream os) {
IR = value; //store instruction
int operand;
if (!processingInterrupt) {
instruction_num++;
}
switch (IR) {
case 1: //Load the value into the AC
PC++;
operand = readFromMemory(pw, is, reader, os, PC);
AC = operand;
PC++;
break;
case 2: //Load the value at the address into the AC
PC++;
operand = readFromMemory(pw, is, reader, os, PC);
AC = readFromMemory(pw, is, reader, os, operand);
PC++;
break;
case 3: //Load the value from the address found in the address into the AC
PC++;
operand = readFromMemory(pw, is, reader, os, PC);
operand = readFromMemory(pw, is, reader, os, operand);
AC = readFromMemory(pw, is, reader, os, operand);
PC++;
break;
case 4: //Load the value at (address+X) into the AC
PC++;
operand = readFromMemory(pw, is, reader, os, PC);
AC = readFromMemory(pw, is, reader, os, operand + X);
PC++;
break;
case 5: //Load the value at (address+Y) into the AC
PC++;
operand = readFromMemory(pw, is, reader, os, PC);
AC = readFromMemory(pw, is, reader, os, operand + Y);
PC++;
break;
case 6: //Load from (Sp+X) into the AC
AC = readFromMemory(pw, is, reader, os, SP + X);
PC++;
break;
case 7: //Store the value in the AC into the address
PC++;
operand = readFromMemory(pw, is, reader, os, PC);
pw.printf("WRITE:" + operand + ":" + AC + "\n");
pw.flush();
PC++;
break;
case 8: //Gets a random int from 1 to 100 into the AC
Random r = new Random();
int i = r.nextInt(100) + 1;
AC = i;
PC++;
break;
case 9: //If port=1, writes AC as an int to the screen
//If port=2, writes AC as a char to the screen
PC++;
operand = readFromMemory(pw, is, reader, os, PC);
if (operand == 1) {
System.out.print(AC);
PC++;
break;
} else if (operand == 2) {
System.out.print((char) AC);
PC++;
break;
} else {
System.out.println("Error: Port = " + operand);
PC++;
System.exit(0);
break;
}
case 10: //Add the value in X to the AC
AC = AC + X;
PC++;
break;
case 11: //Add the value in Y to the AC
AC = AC + Y;
PC++;
break;
case 12: //Subtract the value in X from the AC
AC = AC - X;
PC++;
break;
case 13: //Subtract the value in Y from the AC
AC = AC - Y;
PC++;
break;
case 14: //Copy the value in the AC to X
X = AC;
PC++;
break;
case 15: //Copy the value in X to the AC
AC = X;
PC++;
break;
case 16: //Copy the value in the AC to Y
Y = AC;
PC++;
break;
case 17: //Copy the value in Y to the AC
AC = Y;
PC++;
break;
case 18: //Copy the value in AC to the SP
SP = AC;
PC++;
break;
case 19: //Copy the value in SP to the AC
AC = SP;
PC++;
break;
case 20: //Jump to the address
PC++;
operand = readFromMemory(pw, is, reader, os, PC);
PC = operand;
break;
case 21: //Jump to the address only if the value in the AC is zero
PC++;
operand = readFromMemory(pw, is, reader, os, PC);
if (AC == 0) {
PC = operand;
break;
}
PC++;
break;
case 22: //Jump to the address only if the value in the AC is not zero
PC++;
operand = readFromMemory(pw, is, reader, os, PC);
if (AC != 0) {
PC = operand;
break;
}
PC++;
break;
case 23: //Push return address onto stack, jump to the address
PC++;
operand = readFromMemory(pw, is, reader, os, PC);
//Push value
SP--;
pw.printf("WRITE:" + SP + ":" + (PC + 1) + "\n");
pw.flush();
USER_STACK_TOP = SP;
PC = operand;
break;
case 24: // Pop return address from the stack, jump to the address
//Pop value
int tmp = readFromMemory(pw, is, reader, os, SP);
pw.printf("WRITE:" + SP + ":" + 0 + "\n");
pw.flush();
SP++;
operand = tmp;
PC = operand;
break;
case 25: //Increment the value in X
X++;
PC++;
break;
case 26: //Decrement the value in X
X--;
PC++;
break;
case 27: // Push AC onto stack
//Push value
SP--;
pw.printf("WRITE:" + SP + ":" + AC + "\n");
pw.flush();
PC++;
break;
case 28: // Pop from stack into AC
//Pop value
tmp = readFromMemory(pw, is, reader, os, SP);
pw.printf("WRITE:" + SP + ":" + 0 + "\n");
pw.flush();
SP++;
AC = tmp;
PC++;
break;
case 29: //Perform system call
processingInterrupt = true;
userMode = false; //In Kernel mode
operand = SP;
SP = 2000;
//Push value
SP--;
pw.printf("WRITE:" + SP + ":" + operand + "\n");
pw.flush();
operand = PC + 1;
PC = 1500;
//Push value
SP--;
pw.printf("WRITE:" + SP + ":" + operand + "\n");
pw.flush();
break;
case 30: //Return from system call
//Pop value
tmp = readFromMemory(pw, is, reader, os, SP);
pw.printf("WRITE:" + SP + ":" + 0 + "\n");
pw.flush();
SP++;
PC = tmp;
//Pop value
tmp = readFromMemory(pw, is, reader, os, SP);
pw.printf("WRITE:" + SP + ":" + 0 + "\n");
pw.flush();
SP++;
SP = tmp;
userMode = true;
instruction_num++;
processingInterrupt = false;
break;
case 50: //End Execution
System.exit(0);
break;
default:
System.out.println("Instruction not found - DEFAULTED, EXITING");
System.exit(0);
break;
}
}
}