-
Notifications
You must be signed in to change notification settings - Fork 0
/
pic.cs
509 lines (456 loc) · 15.8 KB
/
pic.cs
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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
using System.Collections;
using System.ComponentModel;
namespace picsim
{
internal partial class Pic
{
private List<ramCell> _ramBank0 = new List<ramCell>();
private List<ramCell> _ramBank1 = new List<ramCell>();
private BindingList<StackItem> _stackDgv = new BindingList<StackItem>();
private int _wreg;
public int Wreg
{
get => _wreg;
set => _wreg = value;
}
public int Quarzcycle1
{
get => _quarzcycle1;
set => _quarzcycle1 = value;
}
public int Cyclecount1
{
get => _cyclecount1;
set => _cyclecount1 = value;
}
public int ProgCntr
{
get => _programCounter;
set => _programCounter = value;
}
public int Runtime
{
get => _runtime;
}
public BindingList<StackItem> StackDGV
{
get => _stackDgv;
set => _stackDgv = value;
}
public List<ramCell> RamBank0
{
get => _ramBank0;
set => _ramBank0 = value;
}
public List<ramCell> RamBank1
{
get => _ramBank1;
set => _ramBank1 = value;
}
private int _programCounter;
private int _runtime;
private int _instructionRegister;
private Stack<int> _stack = new Stack<int>();
private int[] _eeprom = new int[64];
private int _quarzcycle;
private int _quarzcycle1;
private bool _watchdogtrigger;
private int _watchdogtimer;
private int _laufzeit;
private int _laufzeit1;
private int _quarz = 1;
private int _cyclecount = 500;
private int _cyclecount1 = 500;
public void push(int address)
{
_stack.Push(address);
_stackDgv.Insert(0,new StackItem());
_stackDgv[0].Value = address;
}
public int pop()
{
var address = _stack.Pop();
_stackDgv.RemoveAt(0);
return address;
}
public void SetZFlag(bool value)
{
if (value == false)
{
_ramBank0[Status].Value &= ~(1 << 2);
}
else if (value)
{
_ramBank0[Status].Value |= 1 << 2;
}
}
public void SetDCFlag(bool value)
{
if (value == false)
{
_ramBank0[Status].Value &= ~(1 << 1);
}
else if (value)
{
_ramBank0[Status].Value |= 1 << 1;
}
}
public void SetCFlag(bool value)
{
if (value == false)
{
_ramBank0[Status].Value &= ~(1 << 0);
}
else if (value)
{
_ramBank0[Status].Value |= 1 << 0;
}
}
public bool GetCFlag()
{
BitArray b = new BitArray(new int[] { _ramBank0[Status].Value });
return b[C];
}
public bool GetRp0()
{
BitArray b = new BitArray(new int[] { _ramBank0[Status].Value });
return b[Rp0];
}
public void WriteByte(int address, int value)
{
if (GetRp0() == false)
{
switch (address)
{
case 0x00:
_ramBank0[_ramBank0[Fsr].Value].Value = value;
break;
default:
_ramBank0[address].Value = value;
break;
}
switch (address)
{
case 0x03:
_ramBank1[0x03].Value = _ramBank0[0x03].Value;
break;
case 0x02:
_ramBank1[0x02].Value = _ramBank0[0x02].Value;
break;
case 0x0A:
_ramBank1[0x0A].Value = _ramBank0[0x0A].Value;
break;
case 0x0B:
_ramBank1[0x0B].Value = _ramBank0[0x0B].Value;
break;
default:
break;
}
}
else if (GetRp0())
{
if (address == 0x00)
{
_ramBank1[_ramBank0[Fsr].Value].Value = value;
}
else
{
_ramBank1[address].Value = value;
}
switch (address)
{
case 0x03:
_ramBank0[0x03].Value = _ramBank1[0x03].Value;
break;
case 0x02:
_ramBank0[0x02].Value = _ramBank1[0x02].Value;
break;
case 0x0A:
_ramBank0[0x0A].Value = _ramBank1[0x0A].Value;
break;
case 0x0B:
_ramBank0[0x0B].Value = _ramBank1[0x0B].Value;
break;
default:
break;
}
}
}
public int GetByte(int address)
{
int returnValue = 0;
if (GetRp0() == false)
{
returnValue = _ramBank0[address].Value;
if (address == 0x00)
{
returnValue = _ramBank0[_ramBank0[Fsr].Value].Value;
}
else
{
returnValue = _ramBank0[address].Value;
}
}
else if (GetRp0())
{
if (address == 0x00)
{
returnValue = _ramBank1[_ramBank0[Fsr].Value].Value;
}
else
{
returnValue = _ramBank1[address].Value;
}
}
return returnValue;
}
public void WriteResult(int dbit, int fbit, int result)
{
if (dbit == 0)
{
Wreg = result;
}
else if (dbit != 0)
{
WriteByte(fbit, result);
}
}
public void ZFlag(int result)
{
if (result == 0)
{
SetZFlag(true);
}
else
{
SetZFlag(false);
}
}
public void DcFlag(int _k, int wreg)
{
var tempDC1 = _k & 0b_0000_1111;
var tempDC2 = wreg & 0b_0000_1111;
var tempDC3 = tempDC1 + tempDC2;
if ((tempDC3 & 0b_0001_0000) == 16)
{
SetDCFlag(true);
}
else
{
SetDCFlag(false);
}
}
public void CFlag(int result)
{
if (result > 255)
{
SetCFlag(true);
}
else
{
SetCFlag(false);
}
}
public uint RotateLeft(uint value, int count)
{
return (value << count) | (value >> (32 - count));
}
public uint RotateRight(uint value, int count)
{
return (value >> count) | (value << (32 - count));
}
public void watchdogcycle(){
//qInfo()<<"watchdogtimer"<<watchdogtimer<<"\n";
// qInfo()<<"quarzcycle2"<<quarzcycle2<<"\n";
_quarzcycle++;
_laufzeit = (4/_quarz) * _quarzcycle;
_laufzeit1 = (4/_quarz) * _quarzcycle1;
if (_watchdogtrigger == true)
{
_quarzcycle1++; //TMR0 On Clockcycles
if ((_ramBank1[1].Value & 0b_0000_1000) == 8) { //Prescaler to Watchdog
int prescaletmp = _ramBank1[1].Value & 0b_0000_0111;
int prescale = Convert.ToInt32(Math.Pow(2, (prescaletmp)));
if (_cyclecount1 == 500)
{
_cyclecount1 = prescale;
}//um cyclecount zu initalisieren, cyclecoount wird nie wieder den wert 500 erreichen
if (_laufzeit1 > 18000)
{
_quarzcycle1 = 0;
_cyclecount1--;
}
if (_cyclecount1 == 0)
{
_cyclecount1 = prescale;
if((RamBank0[3].Value & 0b_0000_1000)==8){
Reset();
}
else
{
RamBank0[3].Value |= 0b_0000_1000;
}
//SRAM wird erhöt wenn cyclecounts entsprechend dem Prescaler durchgelaufen sind
}
}
if ((_ramBank1[1].Value & 0b_0000_1000) == 0) { //Kein Prescaler gesetzt
if (_laufzeit1>18000)
{
_quarzcycle1 = 0;
if ((RamBank0[3].Value & 0b_0000_1000) == 8)
{
Reset();
}
else
{
RamBank0[3].Value |= 0b_0000_1000;
}
} //SRAM wird erhöt wenn cyclecounts entsprechend dem Prescaler durchgelaufen sind
}
}
}
public void Timercycle()
{ //Timerfunktion für das zählen der Clockcycles
_quarzcycle++;
if (_watchdogtrigger == true)
{
_quarzcycle1++;
};
if ((_ramBank1[1].Value & 0b_0010_0000) == 0) { //TMR0 On Clockcycles
if ((_ramBank1[1].Value & 0b_0000_1000) == 0) { //Prescaler to TMR0
var prescaletmp = _ramBank1[1].Value & 0b00000111;
var prescale = Convert.ToInt32(Math.Pow(2, (prescaletmp+1)));
if (_cyclecount == 500)
{
_cyclecount = prescale;
}//um cyclecount zu initalisieren, cyclecoount wird nie wieder den wert 500 erreichen
_cyclecount--;
if (_cyclecount == 0)
{
_cyclecount = prescale;
_ramBank0[1].Value++; //SRAM wird erhöt wenn cyclecounts entsprechend dem Prescaler durchgelaufen sind
}
if (_ramBank0[1].Value > 255) {
_ramBank0[1].Value &= 0b_1111_1111; // TMR0 wird auf Überlauf kontrolliert
_ramBank0[0x0B].Value |= 0b_0000_0100;
checkinterrupt();
}
}
if ((_ramBank1[1].Value & 0b_0000_1000) == 8)
{ //Kein Prescaler gesetzt
_ramBank0[1].Value++; //SRAM wird erhöt wenn cyclecounts entsprechend dem Prescaler durchgelaufen sind
}
if (_ramBank0[1].Value > 255) {
_ramBank0[1].Value &= 0b_1111_1111; // TMR0 wird auf Überlauf kontrolliert
_ramBank0[0x0B].Value |= 0b_0000_0100;
checkinterrupt();
}
}
}
public void TimersetIO() { //Timerfunktion für das zählen der IO Flanken
if ((_ramBank1[1].Value & 0b_0010_0000) == 32)
{ //Transition on RA4/T0CKI pin
var T0CSstate = (_ramBank1[1].Value & 0b_0001_0000) > 4;
if ((_ramBank1[1].Value & 0b_0000_1000) == 0)
{ //Prescaler to TMR0
var Ra4state = (_ramBank0[5].Value & 0b_0001_0000) > 4; //if RA4 =0 : RA4state = 0 / if RA4 = 1 : Ra4State = 1
if (Ra4state && T0CSstate == false)
{
_cyclecount++;
}
if (Ra4state == false && T0CSstate) {
_cyclecount++;
}
int prescaletmp = _ramBank1[1].Value & 0b_0000_0111;
int prescale = Convert.ToInt32(Math.Pow(2, (prescaletmp+1)));
if (_cyclecount >= prescale)
{
_cyclecount = 0;
_ramBank0[1].Value++; //SRAM wird erhöt wenn cyclecounts entsprechend dem Prescaler durchgelaufen sind
}
if (_ramBank0[1].Value > 255)
{
_ramBank0[1].Value &= 0b_1111_1111;// TMR0 wird auf Überlauf kontrolliert
_ramBank0[0x0B].Value |= 0b_0000_0100;
}
}
if ((_ramBank1[1].Value & 0b_0000_1000) == 8)
{ //Kein Prescaler
var Ra4state = (_ramBank0[5].Value & 0b_0001_0000) > 4; //if RA4 =0 : RA4state = 0/ if RA4 = 1 : Ra4State = 1
if (Ra4state && T0CSstate == false)
{
_ramBank0[1].Value++;
}
if (Ra4state == false && T0CSstate)
{
_ramBank0[1].Value++;
}
if (_ramBank0[1].Value > 255)
{
_ramBank0[1].Value &= 0b_1111_1111; // TMR0 wird auf Überlauf kontrolliert unf fängt wieder bei 0 an
_ramBank0[0x0B].Value |= 0b_0000_0100; //Timerinterrupt flag be Überlauf setzen
checkinterrupt();
}
}
}
}
public void checkinterrupt() {
if ((_ramBank0[0x0B].Value & 0b_1000_0000) == 128)
{
if (((_ramBank0[0x0B].Value & 0b_0010_0000) == 32) && ((_ramBank0[0x0B].Value & 0b_0000_0100) == 4))
{
tmr0interrupt();
}
}
if((_ramBank0[0x0B].Value&0b_1000_0000)==128)
{
if (((_ramBank0[0x0B].Value & 0b_0001_0000) == 16) && ((_ramBank0[0x0B].Value & 0b_0000_0010) == 2))
{
if ((((_ramBank0[0x0B].Value & 0b_0000_0001) == 0) && ((_ramBank0[0x0B].Value & 0b_0100_0000) == 64)) ||
(((_ramBank0[0x0B].Value & 0b_0000_0001) == 1) && ((_ramBank0[0x0B].Value & 0b_0100_0000) == 0)))
{
tmr0interrupt();
}
}
}
if((_ramBank0[0x0B].Value&0b_1000_0000) == 128)
{
if (((_ramBank0[0x0B].Value & 0b_0000_1000) == 8) && ((_ramBank0[0x0B].Value & 0b_0000_0001) == 1))
{
tmr0interrupt();
}
}
}
private void tmr0interrupt() {
_ramBank0[0x0B].Value &= 0b01111111;
push(_programCounter);
_programCounter = 4;
_programCounter--;
}
public bool Watchdogtrigger
{
get => _watchdogtrigger;
set => _watchdogtrigger = value;
}
public void Reset(){
for (int i = 0; i < _ramBank0.Count; i++)
{
_ramBank0[i].Value = 0;
}
for (int i = 0; i < _ramBank1.Count; i++)
{
_ramBank1[i].Value = 0;
}
_ramBank0[3].Value =24;
_ramBank1[3].Value = 24;
_wreg=0;
_programCounter = 0;
_cyclecount = 500;
_cyclecount1 = 500;
_quarzcycle = 0;
_quarzcycle1=0;
StackDGV.Clear();
_stack.Clear();
}
}
}