-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstructions.c
276 lines (258 loc) · 5.5 KB
/
instructions.c
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
/**
* Instructions for Basic Assembly Interpreter
* Author: Boran Seckin <[email protected]>
*/
#include <ctype.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>
#include "instructions.h"
// Registers
int regA, regB, regC, regD, value1, value2 = 0;
bool execute(char *line[4], int lineIndex, int *compare)
{
// Set 1st argument - a registery or an int
int *firstArg = NULL;
if (line[1] != NULL)
{
if (strcasecmp(line[1], "a") == 0)
{
firstArg = ®A;
}
else if (strcasecmp(line[1], "b") == 0)
{
firstArg = ®B;
}
else if (strcasecmp(line[1], "c") == 0)
{
firstArg = ®C;
}
else if (strcasecmp(line[1], "d") == 0)
{
firstArg = ®D;
}
// After checking for registers,
// If the instruction is cmp, allow int as first arg
else if (strcasecmp(line[0], "cmp") == 0)
{
// Parse int
value1 = atoi(line[1]);
firstArg = &value1;
}
else
{
printf("Unknown registery %s at line %i\n", line[1], lineIndex + 1);
return false;
}
}
// Set 2nd argument (optional for some instructions) - a registery or an int
int *secondArg = NULL;
if (line[2] != NULL)
{
// Try to parse register name if not try to parse int
if (strcasecmp(line[2], "a") == 0)
{
secondArg = ®A;
}
else if (strcasecmp(line[2], "b") == 0)
{
secondArg = ®B;
}
else if (strcasecmp(line[2], "c") == 0)
{
secondArg = ®C;
}
else if (strcasecmp(line[2], "d") == 0)
{
secondArg = ®D;
}
else
{
// Parse int
value2 = atoi(line[2]);
secondArg = &value2;
}
}
// MOV
if (strcasecmp(line[0], "mov") == 0)
{
if (secondArg == NULL)
{
printf("Cannot call mov without a second argument at line %i\n", lineIndex + 1);
return false;
}
mov(firstArg, secondArg);
return true;
}
// INC
else if (strcasecmp(line[0], "inc") == 0)
{
inc(firstArg);
return true;
}
// DEC
else if (strcasecmp(line[0], "dec") == 0)
{
dec(firstArg);
return true;
}
// ADD
else if (strcasecmp(line[0], "add") == 0)
{
if (secondArg == NULL)
{
printf("Cannot call add without a second argument at line %i\n", lineIndex + 1);
return false;
}
add(firstArg, secondArg);
return true;
}
// SUB
else if (strcasecmp(line[0], "sub") == 0)
{
if (secondArg == NULL)
{
printf("Cannot call sub without a second argument at line %i\n", lineIndex + 1);
return false;
}
sub(firstArg, secondArg);
return true;
}
// MUL
else if (strcasecmp(line[0], "mul") == 0)
{
if (secondArg == NULL)
{
printf("Cannot call mul without a second argument at line %i\n", lineIndex + 1);
return false;
}
mul(firstArg, secondArg);
return true;
}
// DIV
else if (strcasecmp(line[0], "div") == 0)
{
if (secondArg == NULL)
{
printf("Cannot call div without a second argument at line %i\n", lineIndex + 1);
return false;
}
div1(firstArg, secondArg);
return true;
}
// CMP
else if (strcasecmp(line[0], "cmp") == 0)
{
if (secondArg == NULL)
{
printf("Cannot call cmp without a second argument at line %i\n", lineIndex + 1);
return false;
}
cmp(firstArg, secondArg, compare);
return true;
}
// PRNT
else if (strcasecmp(line[0], "prnt") == 0)
{
prnt(firstArg);
return true;
}
// UNKNOWN
else
{
printf("Unknown command %s at line %i\n", line[0], lineIndex + 1);
return false;
}
return false;
}
// Returns a pointer to the asked register
int *readReg(char reg)
{
if (tolower(reg) == 'a')
{
return ®A;
}
else if (tolower(reg) == 'b')
{
return ®B;
}
else if (tolower(reg) == 'c')
{
return ®C;
}
else if (tolower(reg) == 'd')
{
return ®D;
}
return NULL;
}
// Moves y into x
void mov(int *x, int *y)
{
*x = *y;
return;
}
// Increments x
void inc(int *x)
{
(*x)++;
return;
}
// Decrements x
void dec(int *x)
{
(*x)--;
return;
}
// Adds y to x
void add(int *x, int *y)
{
*x += *y;
return;
}
// Substracts y from x
void sub(int *x, int *y)
{
*x -= *y;
return;
}
// Multiply x by y
void mul(int *x, int *y)
{
*x *= *y;
}
// Divides x by y
void div1(int *x, int *y)
{
*x /= *y;
}
// Compares x and y, updates compare variable according to the result
// Returns 0, if equal
// Returns 1, if x is more than y
// Returns 2, if x is less than y
void cmp(int *x, int *y, int *compare)
{
if (*x == *y)
{
*compare = 0;
}
else if (*x > *y)
{
*compare = 1;
}
else if (*x < *y)
{
*compare = 2;
}
else
{
printf("Compare error between %i and %i\n", *x, *y);
exit(1);
}
}
// Prints the value of the asked register
void prnt(int *x)
{
printf(" > %i\n", *x);
}