-
Notifications
You must be signed in to change notification settings - Fork 0
/
new_emulator.c
341 lines (329 loc) · 8.85 KB
/
new_emulator.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
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
/**
* Copyright (C) 2023 AlanCui4080
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#define packed __attribute__((packed))
packed struct instruction {
unsigned int opcode : 4;
packed union
{
packed struct{
unsigned int dr : 3;
unsigned int sr : 3;
unsigned int is_imm : 1;
packed union {
packed struct {
unsigned int zero : 2;
unsigned int sr2 : 3;
};
unsigned int imm : 5;
};
} ADD;
packed struct{
unsigned int dr : 3;
unsigned int sr : 3;
unsigned int is_imm : 1;
packed union {
packed struct {
unsigned int zero : 2;
unsigned int sr2 : 3;
};
unsigned int imm : 5;
};
} AND;
packed struct{
unsigned int n : 1;
unsigned int z : 1;
unsigned int p : 1;
int offset : 9;
} BR;
packed struct{
unsigned int zero3 : 3;
unsigned int baser : 3;
unsigned int zero6 : 6;
} JMP;
packed struct{
unsigned int is_imm : 1;
packed union {
int offset : 11;
packed struct {
unsigned int zero2 : 2;
unsigned int baser : 3;
unsigned int zero6 : 6;
};
};
} JSR;
packed struct{
unsigned int dr : 3;
int offset : 9;
} LD;
packed struct{
unsigned int dr : 3;
int offset : 9;
} LDI;
packed struct{
unsigned int dr : 3;
unsigned int baser : 3;
int offset : 6;
} LDR;
packed struct{
unsigned int dr : 3;
int offset : 9;
} LEA;
packed struct{
unsigned int dr : 3;
unsigned int sr : 3;
unsigned int one6 : 6;
} NOT;
packed struct{
unsigned int zero3 : 3;
unsigned int one3 : 3;
unsigned int zero6 : 6;
} RET;
packed struct{
unsigned int zero12 : 12;
} RTI;
packed struct{
unsigned int sr : 3;
int offset : 9;
} ST;
packed struct{
unsigned int sr : 3;
int offset : 9;
} STI;
packed struct{
unsigned int sr : 3;
unsigned int baser : 3;
int offset : 6;
} STR;
packed struct{
unsigned int zero4 : 4;
unsigned int trapvect : 8;
} TRAP;
packed struct{
unsigned int invaild : 16;
} INVAILD;
};
};
typedef uint16_t word;
enum opcode
{
OPCODE_ADD = 0b0010,
OPCODE_AND = 0b1010,
OPCODE_BR = 0b0000,
OPCODE_JMP = 0b1100,
OPCODE_JSR = 0b0100,
OPCODE_LD = 0b0010,
OPCODE_LDI = 0b1010,
OPCODE_LDR = 0b0110,
OPCODE_LEA = 0b1110,
OPCODE_NOT = 0b1001,
OPCODE_RTI = 0b1000,
OPCODE_ST = 0b0011,
OPCODE_STI = 0b1011,
OPCODE_STR = 0b0111,
OPCODE_TRAP = 0b1111
};
struct emulator
{
word reg[8];
word* memory;
packed struct
{
unsigned int privilege:1;
unsigned int rev:9;
unsigned int priority:3;
unsigned int n:1;
unsigned int p:1;
unsigned int z:1;
}psr;
word pc;
word ssp;
word usp;
};
void do_interrupt(struct emulator* ctx, unsigned int vector)
{
ctx->usp = ctx->reg[6];
ctx->reg[6] = ctx->ssp;
memcpy((word*)&ctx->psr, &ctx->reg[6], sizeof(word));
ctx->reg[6]--;
ctx->reg[6] = ctx->pc;
ctx->psr.privilege = 0;
//ctx->psr.priority = 4;
ctx->pc = ctx->memory[vector];
}
void tool_setcc(struct emulator* ctx, int reg)
{
if((signed short)ctx->reg[reg] < 0) ctx->psr.n = 1;
if((signed short)ctx->reg[reg] == 0) ctx->psr.z = 1;
if((signed short)ctx->reg[reg] > 0) ctx->psr.p = 1;
}
void instruction_LD(struct emulator* ctx, struct instruction* ins)
{
ctx->reg[ins->LD.dr] = ctx->memory[ctx->pc + ins->LD.offset];
tool_setcc(ctx,ins->LD.dr);
}
void instruction_LDR(struct emulator* ctx, struct instruction* ins)
{
ctx->reg[ins->LDR.dr] = ctx->memory[ctx->reg[ins->LDR.baser] + ins->LDR.offset];
tool_setcc(ctx,ins->LDR.dr);
}
void instruction_LDI(struct emulator* ctx, struct instruction* ins)
{
ctx->reg[ins->LDI.dr] = ctx->memory[ctx->memory[ctx->pc + ins->LDI.offset]];
tool_setcc(ctx,ins->LDI.dr);
}
void instruction_ST(struct emulator* ctx, struct instruction* ins)
{
ctx->memory[ctx->pc + ins->ST.offset] = ctx->reg[ins->ST.sr];
}
void instruction_STR(struct emulator* ctx, struct instruction* ins)
{
ctx->memory[ctx->reg[ins->STR.baser] + ins->STR.offset] = ctx->reg[ins->STR.sr];
}
void instruction_STI(struct emulator* ctx, struct instruction* ins)
{
ctx->memory[ctx->memory[ctx->pc + ins->STI.offset]] = ctx->reg[ins->STI.sr];
}
void instruction_JSR(struct emulator* ctx, struct instruction* ins)
{
ctx->reg[7] = ctx->pc;
if(ins->JSR.is_imm)
{
ctx->pc += ins->JSR.offset;
}
else
{
ctx->pc = ins->JSR.baser;
}
}
void instruction_NOT(struct emulator* ctx, struct instruction* ins)
{
ctx->reg[ins->NOT.dr] = ~ctx->reg[ins->NOT.sr];
tool_setcc(ctx,ins->NOT.dr);
}
void instruction_AND(struct emulator* ctx, struct instruction* ins)
{
if(ins->AND.is_imm)
{
ctx->reg[ins->AND.dr] = ctx->reg[ins->AND.sr] & ins->AND.imm;
}
else
{
ctx->reg[ins->AND.dr] = ctx->reg[ins->AND.sr] & ctx->reg[ins->AND.sr2];
}
tool_setcc(ctx,ins->AND.dr);
}
void instruction_ADD(struct emulator* ctx, struct instruction* ins)
{
if(ins->ADD.is_imm)
{
ctx->reg[ins->ADD.dr] = ctx->reg[ins->ADD.sr] + ins->ADD.imm;
}
else
{
ctx->reg[ins->ADD.dr] = ctx->reg[ins->ADD.sr] + ctx->reg[ins->ADD.sr2];
}
tool_setcc(ctx,ins->ADD.dr);
}
void instruction_BR(struct emulator* ctx, struct instruction* ins)
{
if(((ctx->psr.n) && ins->BR.n)
|| ((ctx->psr.p) && ins->BR.p)
|| ((ctx->psr.z) && ins->BR.z))
{
ctx->pc += ins->BR.offset;
}
}
void instruction_JMP(struct emulator* ctx, struct instruction* ins)
{
ctx->pc = ins->JMP.baser;
}
void instruction_RTI(struct emulator* ctx, struct instruction* ins)
{
if(ctx->psr.privilege == 1)
do_interrupt(ctx,0x0100);
ctx->pc = ctx->memory[ctx->reg[6]];
ctx->reg[6]++;
word temp = ctx->memory[ctx->reg[6]];
ctx->reg[6]++;
memcpy((word*)&ctx->psr, &temp, sizeof(word));
ctx->reg[6] = ctx->usp;
(void)ins;
}
void instruction_LEA(struct emulator* ctx, struct instruction* ins)
{
ctx->reg[ins->LEA.dr] = ctx->pc + ins->LEA.offset;
tool_setcc(ctx,ins->LEA.dr);
}
void instruction_TRAP(struct emulator* ctx, struct instruction* ins)
{
ctx->reg[7] = ctx->pc;
ctx->pc = ctx->memory[ins->TRAP.trapvect];
}
void(*instruction_func[16])(struct emulator* ctx, struct instruction* ins) = \
{
instruction_BR,
instruction_ADD,
instruction_LD,
instruction_ST,
instruction_JSR,
instruction_AND,
instruction_LDR,
instruction_STR,
instruction_RTI,
instruction_NOT,
instruction_LDI,
instruction_STI,
instruction_JMP,
NULL,
instruction_LEA,
instruction_TRAP
};
struct emulator* emulator_initialize(struct emulator* ctx, size_t memory_size)
{
for (size_t i = 0; i < 8; i++)
{
ctx->reg[i] = 0;
}
ctx->memory = calloc(sizeof(word), memory_size);
if (ctx->memory == NULL)
return NULL;
memset((word*)&ctx->psr, 0, sizeof(word));
ctx->pc = 0;
return ctx;
}
struct instruction* emulator_fetch(struct emulator* ctx)
{
ctx->pc++;
return (struct instruction *)&(ctx->memory[ctx->pc - 1]);
}
void emulator_decode_execute(struct emulator* ctx, struct instruction* ins)
{
if(instruction_func[ins->opcode] == NULL)
do_interrupt(ctx,0x0101);
instruction_func[ins->opcode](ctx,ins);
}
struct emulator* emulator_start(struct emulator* ctx)
{
while(1)
{
emulator_decode_execute(ctx,emulator_fetch(ctx));
}
}