OpenCores
URL https://opencores.org/ocsvn/thor/thor/trunk

Subversion Repositories thor

[/] [thor/] [trunk/] [software/] [emuThor/] [source/] [frmRegisters.h] - Blame information for rev 32

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 robfinch
#pragma once
2
 
3
namespace emuThor {
4
 
5
        using namespace System;
6
        using namespace System::ComponentModel;
7
        using namespace System::Collections;
8
        using namespace System::Windows::Forms;
9
        using namespace System::Data;
10
        using namespace System::Drawing;
11 32 robfinch
        using namespace System::Threading;
12 30 robfinch
 
13
        /// <summary>
14
        /// Summary for frmRegisters
15
        /// </summary>
16
        public ref class frmRegisters : public System::Windows::Forms::Form
17
        {
18
        public:
19 32 robfinch
                Mutex^ mut;
20
                frmRegisters(Mutex^ m)
21 30 robfinch
                {
22 32 robfinch
                        mut = m;
23 30 robfinch
                        InitializeComponent();
24
                        //
25
                        //TODO: Add the constructor code here
26
                        //
27
                        char buf[100];
28 32 robfinch
                        mut->WaitOne();
29
                        sprintf(buf, "%016I64X", system1.cpu2.gp[1]);
30 30 robfinch
                        txtR1->Text = gcnew String(buf);
31 32 robfinch
                        sprintf(buf, "%016I64X", system1.cpu2.gp[2]);
32 30 robfinch
                        txtR2->Text = gcnew String(buf);
33 32 robfinch
                        sprintf(buf, "%016I64X", system1.cpu2.gp[3]);
34 30 robfinch
                        txtR3->Text = gcnew String(buf);
35 32 robfinch
                        sprintf(buf, "%016I64X", system1.cpu2.gp[4]);
36 30 robfinch
                        txtR4->Text = gcnew String(buf);
37 32 robfinch
                        sprintf(buf, "%016I64X", system1.cpu2.gp[5]);
38 30 robfinch
                        txtR5->Text = gcnew String(buf);
39 32 robfinch
                        sprintf(buf, "%016I64X", system1.cpu2.gp[6]);
40 30 robfinch
                        txtR6->Text = gcnew String(buf);
41 32 robfinch
                        sprintf(buf, "%016I64X", system1.cpu2.gp[7]);
42 30 robfinch
                        txtR7->Text = gcnew String(buf);
43 32 robfinch
                        sprintf(buf, "%016I64X", system1.cpu2.gp[8]);
44 30 robfinch
                        txtR8->Text = gcnew String(buf);
45 32 robfinch
                        sprintf(buf, "%016I64X", system1.cpu2.gp[9]);
46
                        txtR9->Text = gcnew String(buf);
47
                        sprintf(buf, "%016I64X", system1.cpu2.gp[10]);
48
                        txtR10->Text = gcnew String(buf);
49
                        sprintf(buf, "%016I64X", system1.cpu2.gp[11]);
50
                        txtR11->Text = gcnew String(buf);
51
                        sprintf(buf, "%016I64X", system1.cpu2.gp[12]);
52
                        txtR12->Text = gcnew String(buf);
53
                        sprintf(buf, "%016I64X", system1.cpu2.gp[13]);
54
                        txtR13->Text = gcnew String(buf);
55
                        sprintf(buf, "%016I64X", system1.cpu2.gp[14]);
56
                        txtR14->Text = gcnew String(buf);
57
                        sprintf(buf, "%016I64X", system1.cpu2.gp[15]);
58
                        txtR15->Text = gcnew String(buf);
59
                        sprintf(buf, "%016I64X", system1.cpu2.gp[16]);
60
                        txtR16->Text = gcnew String(buf);
61
                        sprintf(buf, "%016I64X", system1.cpu2.gp[17]);
62
                        txtR17->Text = gcnew String(buf);
63
                        sprintf(buf, "%016I64X", system1.cpu2.gp[18]);
64
                        txtR18->Text = gcnew String(buf);
65
                        sprintf(buf, "%016I64X", system1.cpu2.gp[19]);
66
                        txtR19->Text = gcnew String(buf);
67
                        sprintf(buf, "%016I64X", system1.cpu2.gp[26]);
68
                        txtR26->Text = gcnew String(buf);
69
                        sprintf(buf, "%016I64X", system1.cpu2.gp[27]);
70
                        txtR27->Text = gcnew String(buf);
71
                        sprintf(buf, "%016I64X", system1.cpu2.gp[28]);
72
                        txtR28->Text = gcnew String(buf);
73
                        sprintf(buf, "%016I64X", system1.cpu2.gp[29]);
74
                        txtR29->Text = gcnew String(buf);
75
                        sprintf(buf, "%016I64X", system1.cpu2.gp[30]);
76
                        txtR30->Text = gcnew String(buf);
77
                        sprintf(buf, "%016I64X", system1.cpu2.gp[31]);
78
                        txtR31->Text = gcnew String(buf);
79
 
80
                        // Predicate Registers
81
                        sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[0],
82
                                system1.cpu2.pr[0] & 4 ? '<' : ' ',
83
                                system1.cpu2.pr[0] & 2 ? '<' : ' ',
84
                                system1.cpu2.pr[0] & 1 ? '=' : ' '
85
                                );
86
                        txtP0->Text = gcnew String(buf);
87
                        sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[1],
88
                                system1.cpu2.pr[1] & 4 ? '<' : ' ',
89
                                system1.cpu2.pr[1] & 2 ? '<' : ' ',
90
                                system1.cpu2.pr[1] & 1 ? '=' : ' '
91
                                );
92
                        txtP1->Text = gcnew String(buf);
93
                        sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[2],
94
                                system1.cpu2.pr[2] & 4 ? '<' : ' ',
95
                                system1.cpu2.pr[2] & 2 ? '<' : ' ',
96
                                system1.cpu2.pr[2] & 1 ? '=' : ' '
97
                                );
98
                        txtP2->Text = gcnew String(buf);
99
                        sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[3],
100
                                system1.cpu2.pr[3] & 4 ? '<' : ' ',
101
                                system1.cpu2.pr[3] & 2 ? '<' : ' ',
102
                                system1.cpu2.pr[3] & 1 ? '=' : ' '
103
                                );
104
                        txtP3->Text = gcnew String(buf);
105
                        sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[4],
106
                                system1.cpu2.pr[4] & 4 ? '<' : ' ',
107
                                system1.cpu2.pr[4] & 2 ? '<' : ' ',
108
                                system1.cpu2.pr[4] & 1 ? '=' : ' '
109
                                );
110
                        txtP4->Text = gcnew String(buf);
111
                        sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[5],
112
                                system1.cpu2.pr[5] & 4 ? '<' : ' ',
113
                                system1.cpu2.pr[5] & 2 ? '<' : ' ',
114
                                system1.cpu2.pr[5] & 1 ? '=' : ' '
115
                                );
116
                        txtP5->Text = gcnew String(buf);
117
                        sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[6],
118
                                system1.cpu2.pr[6] & 4 ? '<' : ' ',
119
                                system1.cpu2.pr[6] & 2 ? '<' : ' ',
120
                                system1.cpu2.pr[6] & 1 ? '=' : ' '
121
                                );
122
                        txtP6->Text = gcnew String(buf);
123
                        sprintf(buf, "%04X %c%c%c", system1.cpu2.pr[7],
124
                                system1.cpu2.pr[7] & 4 ? '<' : ' ',
125
                                system1.cpu2.pr[7] & 2 ? '<' : ' ',
126
                                system1.cpu2.pr[7] & 1 ? '=' : ' '
127
                                );
128
                        txtP7->Text = gcnew String(buf);
129
 
130
                        // Code address registers
131
                        sprintf(buf, "%016I64X", system1.cpu2.ca[1]);
132 30 robfinch
                        txtCa1->Text = gcnew String(buf);
133 32 robfinch
                        sprintf(buf, "%016I64X", system1.cpu2.ca[12]);
134 30 robfinch
                        txtCa12->Text = gcnew String(buf);
135 32 robfinch
                        sprintf(buf, "%016I64X", system1.cpu2.ca[14]);
136
                        txtCa14->Text = gcnew String(buf);
137
                        sprintf(buf, "%016I64X", system1.cpu2.pc);
138 30 robfinch
                        txtCa15->Text = gcnew String(buf);
139 32 robfinch
 
140
                        sprintf(buf, "%016I64X", system1.cpu2.tick);
141 30 robfinch
                        txtTick->Text = gcnew String(buf);
142 32 robfinch
                        sprintf(buf, "%016I64X", system1.cpu2.lc);
143 30 robfinch
                        txtLC->Text = gcnew String(buf);
144 32 robfinch
                        mut->ReleaseMutex();
145 30 robfinch
                }
146
 
147
        protected:
148
                /// <summary>
149
                /// Clean up any resources being used.
150
                /// </summary>
151
                ~frmRegisters()
152
                {
153
                        if (components)
154
                        {
155
                                delete components;
156
                        }
157
                }
158
        private: System::Windows::Forms::TabControl^  tabControl1;
159
        protected:
160
        private: System::Windows::Forms::TabPage^  tabPage1;
161
        private: System::Windows::Forms::TextBox^  txtR1;
162
 
163
        private: System::Windows::Forms::Label^  label2;
164
        private: System::Windows::Forms::TextBox^  txtR0;
165
 
166
        private: System::Windows::Forms::Label^  label1;
167
        private: System::Windows::Forms::TabPage^  tabPage2;
168
        private: System::Windows::Forms::TextBox^  textBox49;
169
        private: System::Windows::Forms::Label^  label49;
170
        private: System::Windows::Forms::TextBox^  textBox50;
171
        private: System::Windows::Forms::Label^  label50;
172
        private: System::Windows::Forms::TextBox^  textBox51;
173
        private: System::Windows::Forms::Label^  label51;
174
        private: System::Windows::Forms::TextBox^  textBox52;
175
        private: System::Windows::Forms::Label^  label52;
176
        private: System::Windows::Forms::TextBox^  textBox53;
177
        private: System::Windows::Forms::Label^  label53;
178
        private: System::Windows::Forms::TextBox^  textBox54;
179
        private: System::Windows::Forms::Label^  label54;
180
        private: System::Windows::Forms::TextBox^  textBox55;
181
        private: System::Windows::Forms::Label^  label55;
182
        private: System::Windows::Forms::TextBox^  textBox56;
183
        private: System::Windows::Forms::Label^  label56;
184
        private: System::Windows::Forms::TextBox^  textBox57;
185
        private: System::Windows::Forms::Label^  label57;
186
        private: System::Windows::Forms::TextBox^  textBox58;
187
        private: System::Windows::Forms::Label^  label58;
188
        private: System::Windows::Forms::TextBox^  textBox59;
189
        private: System::Windows::Forms::Label^  label59;
190
        private: System::Windows::Forms::TextBox^  textBox60;
191
        private: System::Windows::Forms::Label^  label60;
192
        private: System::Windows::Forms::TextBox^  textBox61;
193
        private: System::Windows::Forms::Label^  label61;
194
        private: System::Windows::Forms::TextBox^  textBox62;
195
        private: System::Windows::Forms::Label^  label62;
196
        private: System::Windows::Forms::TextBox^  textBox63;
197
        private: System::Windows::Forms::Label^  label63;
198
        private: System::Windows::Forms::TextBox^  textBox64;
199
        private: System::Windows::Forms::Label^  label64;
200
        private: System::Windows::Forms::TextBox^  textBox33;
201
        private: System::Windows::Forms::Label^  label33;
202
        private: System::Windows::Forms::TextBox^  textBox34;
203
        private: System::Windows::Forms::Label^  label34;
204
        private: System::Windows::Forms::TextBox^  textBox35;
205
        private: System::Windows::Forms::Label^  label35;
206
        private: System::Windows::Forms::TextBox^  textBox36;
207
        private: System::Windows::Forms::Label^  label36;
208
        private: System::Windows::Forms::TextBox^  textBox37;
209
        private: System::Windows::Forms::Label^  label37;
210
        private: System::Windows::Forms::TextBox^  textBox38;
211
        private: System::Windows::Forms::Label^  label38;
212
        private: System::Windows::Forms::TextBox^  textBox39;
213
        private: System::Windows::Forms::Label^  label39;
214
        private: System::Windows::Forms::TextBox^  textBox40;
215
        private: System::Windows::Forms::Label^  label40;
216
        private: System::Windows::Forms::TextBox^  textBox41;
217
        private: System::Windows::Forms::Label^  label41;
218
        private: System::Windows::Forms::TextBox^  textBox42;
219
        private: System::Windows::Forms::Label^  label42;
220
        private: System::Windows::Forms::TextBox^  textBox43;
221
        private: System::Windows::Forms::Label^  label43;
222
        private: System::Windows::Forms::TextBox^  textBox44;
223
        private: System::Windows::Forms::Label^  label44;
224 32 robfinch
private: System::Windows::Forms::TextBox^  txtR35;
225
 
226 30 robfinch
        private: System::Windows::Forms::Label^  label45;
227 32 robfinch
private: System::Windows::Forms::TextBox^  txtR34;
228
 
229 30 robfinch
        private: System::Windows::Forms::Label^  label46;
230 32 robfinch
private: System::Windows::Forms::TextBox^  txtR33;
231
 
232 30 robfinch
        private: System::Windows::Forms::Label^  label47;
233 32 robfinch
private: System::Windows::Forms::TextBox^  txtR32;
234
 
235 30 robfinch
        private: System::Windows::Forms::Label^  label48;
236 32 robfinch
private: System::Windows::Forms::TextBox^  txtR31;
237
 
238 30 robfinch
        private: System::Windows::Forms::Label^  label17;
239 32 robfinch
private: System::Windows::Forms::TextBox^  txtR30;
240
 
241 30 robfinch
        private: System::Windows::Forms::Label^  label18;
242 32 robfinch
private: System::Windows::Forms::TextBox^  txtR29;
243
 
244 30 robfinch
        private: System::Windows::Forms::Label^  label19;
245 32 robfinch
private: System::Windows::Forms::TextBox^  txtR28;
246
 
247 30 robfinch
        private: System::Windows::Forms::Label^  label20;
248
private: System::Windows::Forms::TextBox^  txtR27;
249
 
250
        private: System::Windows::Forms::Label^  label21;
251
private: System::Windows::Forms::TextBox^  txtR26;
252
 
253
        private: System::Windows::Forms::Label^  label22;
254
private: System::Windows::Forms::TextBox^  txtR25;
255
 
256
        private: System::Windows::Forms::Label^  label23;
257
private: System::Windows::Forms::TextBox^  txtR24;
258
 
259
        private: System::Windows::Forms::Label^  label24;
260
private: System::Windows::Forms::TextBox^  txtR23;
261
 
262
        private: System::Windows::Forms::Label^  label25;
263
private: System::Windows::Forms::TextBox^  txtR22;
264
 
265
        private: System::Windows::Forms::Label^  label26;
266
private: System::Windows::Forms::TextBox^  txtR21;
267
 
268
        private: System::Windows::Forms::Label^  label27;
269
private: System::Windows::Forms::TextBox^  txtR20;
270
 
271
        private: System::Windows::Forms::Label^  label28;
272
private: System::Windows::Forms::TextBox^  txtR19;
273
 
274
        private: System::Windows::Forms::Label^  label29;
275
private: System::Windows::Forms::TextBox^  txtR18;
276
 
277
        private: System::Windows::Forms::Label^  label30;
278
private: System::Windows::Forms::TextBox^  txtR17;
279
 
280
        private: System::Windows::Forms::Label^  label31;
281
private: System::Windows::Forms::TextBox^  txtR16;
282
 
283
        private: System::Windows::Forms::Label^  label32;
284
private: System::Windows::Forms::TextBox^  txtR15;
285
 
286
        private: System::Windows::Forms::Label^  label9;
287
private: System::Windows::Forms::TextBox^  txtR14;
288
 
289
        private: System::Windows::Forms::Label^  label10;
290
private: System::Windows::Forms::TextBox^  txtR13;
291
 
292
        private: System::Windows::Forms::Label^  label11;
293
private: System::Windows::Forms::TextBox^  txtR12;
294
 
295
        private: System::Windows::Forms::Label^  label12;
296
private: System::Windows::Forms::TextBox^  txtR11;
297
 
298
        private: System::Windows::Forms::Label^  label13;
299
private: System::Windows::Forms::TextBox^  txtR10;
300
 
301
        private: System::Windows::Forms::Label^  label14;
302
private: System::Windows::Forms::TextBox^  txtR9;
303
 
304
        private: System::Windows::Forms::Label^  label15;
305
private: System::Windows::Forms::TextBox^  txtR8;
306
 
307
        private: System::Windows::Forms::Label^  label16;
308
private: System::Windows::Forms::TextBox^  txtR7;
309
 
310
        private: System::Windows::Forms::Label^  label5;
311
private: System::Windows::Forms::TextBox^  txtR6;
312
 
313
        private: System::Windows::Forms::Label^  label6;
314
private: System::Windows::Forms::TextBox^  txtR5;
315
 
316
        private: System::Windows::Forms::Label^  label7;
317
private: System::Windows::Forms::TextBox^  txtR4;
318
 
319
        private: System::Windows::Forms::Label^  label8;
320
private: System::Windows::Forms::TextBox^  txtR3;
321
 
322
        private: System::Windows::Forms::Label^  label3;
323
private: System::Windows::Forms::TextBox^  txtR2;
324
 
325
        private: System::Windows::Forms::Label^  label4;
326
private: System::Windows::Forms::Label^  label109;
327
private: System::Windows::Forms::Label^  label108;
328
private: System::Windows::Forms::Label^  label107;
329
private: System::Windows::Forms::Label^  label106;
330
private: System::Windows::Forms::Label^  label105;
331
private: System::Windows::Forms::TextBox^  textBox94;
332
private: System::Windows::Forms::TextBox^  txtCs;
333
 
334
private: System::Windows::Forms::Label^  label104;
335 32 robfinch
private: System::Windows::Forms::TextBox^  txtSSLmt;
336
 
337 30 robfinch
private: System::Windows::Forms::TextBox^  txtSs;
338
 
339
private: System::Windows::Forms::Label^  label103;
340
private: System::Windows::Forms::TextBox^  textBox90;
341
private: System::Windows::Forms::TextBox^  txtHs;
342
 
343
private: System::Windows::Forms::Label^  label102;
344
private: System::Windows::Forms::TextBox^  textBox88;
345
private: System::Windows::Forms::TextBox^  txtGs;
346
 
347
private: System::Windows::Forms::Label^  label101;
348
private: System::Windows::Forms::TextBox^  textBox86;
349
private: System::Windows::Forms::TextBox^  txtFs;
350
 
351
private: System::Windows::Forms::Label^  label100;
352
private: System::Windows::Forms::TextBox^  textBox84;
353
private: System::Windows::Forms::TextBox^  txtEs;
354
 
355
private: System::Windows::Forms::Label^  label99;
356
private: System::Windows::Forms::TextBox^  textBox82;
357
private: System::Windows::Forms::TextBox^  txtDs;
358
 
359
private: System::Windows::Forms::Label^  label98;
360 32 robfinch
private: System::Windows::Forms::TextBox^  txtZSLmt;
361
 
362 30 robfinch
private: System::Windows::Forms::TextBox^  txtZs;
363
 
364
private: System::Windows::Forms::Label^  label97;
365
private: System::Windows::Forms::TextBox^  txtCa15;
366
 
367
private: System::Windows::Forms::Label^  label96;
368
private: System::Windows::Forms::TextBox^  txtCa14;
369
 
370
private: System::Windows::Forms::Label^  label95;
371
private: System::Windows::Forms::TextBox^  txtCa13;
372
 
373
private: System::Windows::Forms::Label^  label94;
374
private: System::Windows::Forms::TextBox^  txtCa12;
375
 
376
private: System::Windows::Forms::Label^  label93;
377
private: System::Windows::Forms::TextBox^  txtCa11;
378
 
379
private: System::Windows::Forms::Label^  label92;
380
private: System::Windows::Forms::TextBox^  txtCa10;
381
 
382
private: System::Windows::Forms::Label^  label91;
383
private: System::Windows::Forms::TextBox^  txtCa9;
384
 
385
private: System::Windows::Forms::Label^  label90;
386
private: System::Windows::Forms::TextBox^  txtCa8;
387
 
388
private: System::Windows::Forms::Label^  label89;
389
private: System::Windows::Forms::TextBox^  txtCa7;
390
 
391
private: System::Windows::Forms::Label^  label88;
392
private: System::Windows::Forms::TextBox^  txtCa6;
393
 
394
private: System::Windows::Forms::Label^  label87;
395
private: System::Windows::Forms::TextBox^  txtCa5;
396
 
397
private: System::Windows::Forms::Label^  label86;
398
private: System::Windows::Forms::TextBox^  txtCa4;
399
 
400
private: System::Windows::Forms::Label^  label85;
401
private: System::Windows::Forms::TextBox^  txtCa3;
402
 
403
private: System::Windows::Forms::Label^  label84;
404
private: System::Windows::Forms::TextBox^  txtCa2;
405
 
406
private: System::Windows::Forms::Label^  label83;
407
private: System::Windows::Forms::TextBox^  txtCa1;
408
 
409
private: System::Windows::Forms::Label^  label82;
410
private: System::Windows::Forms::TextBox^  textBox16;
411
private: System::Windows::Forms::Label^  label81;
412 32 robfinch
private: System::Windows::Forms::TextBox^  txtP14;
413
 
414 30 robfinch
private: System::Windows::Forms::Label^  label80;
415 32 robfinch
private: System::Windows::Forms::TextBox^  txtP13;
416
 
417 30 robfinch
private: System::Windows::Forms::Label^  label79;
418 32 robfinch
private: System::Windows::Forms::TextBox^  txtP12;
419
 
420 30 robfinch
private: System::Windows::Forms::Label^  label78;
421 32 robfinch
private: System::Windows::Forms::TextBox^  txtP11;
422
 
423 30 robfinch
private: System::Windows::Forms::Label^  label77;
424 32 robfinch
private: System::Windows::Forms::TextBox^  txtP15;
425
 
426 30 robfinch
private: System::Windows::Forms::Label^  label76;
427 32 robfinch
private: System::Windows::Forms::TextBox^  txtP10;
428
 
429 30 robfinch
private: System::Windows::Forms::Label^  label75;
430 32 robfinch
private: System::Windows::Forms::TextBox^  txtP9;
431
 
432 30 robfinch
private: System::Windows::Forms::Label^  label74;
433 32 robfinch
private: System::Windows::Forms::TextBox^  txtP8;
434
 
435 30 robfinch
private: System::Windows::Forms::Label^  label73;
436
private: System::Windows::Forms::TextBox^  txtP7;
437
 
438
private: System::Windows::Forms::Label^  label72;
439
private: System::Windows::Forms::TextBox^  txtP6;
440
 
441
private: System::Windows::Forms::Label^  label71;
442
private: System::Windows::Forms::TextBox^  txtP5;
443
 
444
private: System::Windows::Forms::Label^  label70;
445
private: System::Windows::Forms::TextBox^  txtP4;
446
 
447
private: System::Windows::Forms::Label^  label69;
448
private: System::Windows::Forms::TextBox^  txtP3;
449
 
450
private: System::Windows::Forms::Label^  label68;
451
private: System::Windows::Forms::TextBox^  txtP2;
452
 
453
private: System::Windows::Forms::Label^  label67;
454
private: System::Windows::Forms::TextBox^  txtP1;
455
 
456
private: System::Windows::Forms::Label^  label66;
457
private: System::Windows::Forms::TextBox^  txtP0;
458
private: System::Windows::Forms::Label^  label65;
459
private: System::Windows::Forms::Label^  label116;
460
private: System::Windows::Forms::TextBox^  textBox101;
461
private: System::Windows::Forms::Label^  label115;
462
private: System::Windows::Forms::TextBox^  textBox100;
463
private: System::Windows::Forms::Label^  label114;
464
private: System::Windows::Forms::TextBox^  textBox99;
465
private: System::Windows::Forms::Label^  label113;
466
private: System::Windows::Forms::TextBox^  textBox98;
467
private: System::Windows::Forms::Label^  label112;
468
private: System::Windows::Forms::TextBox^  textBox97;
469
private: System::Windows::Forms::Label^  label111;
470 32 robfinch
private: System::Windows::Forms::TextBox^  txtDBAD0;
471
 
472 30 robfinch
private: System::Windows::Forms::Label^  label110;
473
private: System::Windows::Forms::TextBox^  txtTick;
474
private: System::Windows::Forms::Label^  label118;
475
private: System::Windows::Forms::TextBox^  txtLC;
476
private: System::Windows::Forms::Label^  label117;
477
 
478
        protected:
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
 
510
 
511
 
512
 
513
 
514
 
515
 
516
 
517
 
518
 
519
 
520
 
521
 
522
 
523
 
524
 
525
 
526
 
527
 
528
 
529
 
530
 
531
 
532
 
533
 
534
 
535
 
536
 
537
 
538
 
539
 
540
 
541
 
542
 
543
 
544
 
545
 
546
 
547
 
548
 
549
 
550
 
551
 
552
 
553
 
554
 
555
 
556
 
557
 
558
 
559
 
560
 
561
 
562
 
563
 
564
 
565
 
566
 
567
 
568
 
569
 
570
 
571
 
572
 
573
 
574
 
575
 
576
 
577
 
578
 
579
 
580
 
581
 
582
 
583
 
584
 
585
 
586
 
587
 
588
 
589
 
590
 
591
 
592
 
593
 
594
 
595
 
596
 
597
 
598
 
599
 
600
 
601
 
602
 
603
 
604
 
605
 
606
 
607
 
608
        private:
609
                /// <summary>
610
                /// Required designer variable.
611
                /// </summary>
612
                System::ComponentModel::Container ^components;
613
 
614
#pragma region Windows Form Designer generated code
615
                /// <summary>
616
                /// Required method for Designer support - do not modify
617
                /// the contents of this method with the code editor.
618
                /// </summary>
619
                void InitializeComponent(void)
620
                {
621
                        this->tabControl1 = (gcnew System::Windows::Forms::TabControl());
622
                        this->tabPage1 = (gcnew System::Windows::Forms::TabPage());
623
                        this->textBox49 = (gcnew System::Windows::Forms::TextBox());
624
                        this->label49 = (gcnew System::Windows::Forms::Label());
625
                        this->textBox50 = (gcnew System::Windows::Forms::TextBox());
626
                        this->label50 = (gcnew System::Windows::Forms::Label());
627
                        this->textBox51 = (gcnew System::Windows::Forms::TextBox());
628
                        this->label51 = (gcnew System::Windows::Forms::Label());
629
                        this->textBox52 = (gcnew System::Windows::Forms::TextBox());
630
                        this->label52 = (gcnew System::Windows::Forms::Label());
631
                        this->textBox53 = (gcnew System::Windows::Forms::TextBox());
632
                        this->label53 = (gcnew System::Windows::Forms::Label());
633
                        this->textBox54 = (gcnew System::Windows::Forms::TextBox());
634
                        this->label54 = (gcnew System::Windows::Forms::Label());
635
                        this->textBox55 = (gcnew System::Windows::Forms::TextBox());
636
                        this->label55 = (gcnew System::Windows::Forms::Label());
637
                        this->textBox56 = (gcnew System::Windows::Forms::TextBox());
638
                        this->label56 = (gcnew System::Windows::Forms::Label());
639
                        this->textBox57 = (gcnew System::Windows::Forms::TextBox());
640
                        this->label57 = (gcnew System::Windows::Forms::Label());
641
                        this->textBox58 = (gcnew System::Windows::Forms::TextBox());
642
                        this->label58 = (gcnew System::Windows::Forms::Label());
643
                        this->textBox59 = (gcnew System::Windows::Forms::TextBox());
644
                        this->label59 = (gcnew System::Windows::Forms::Label());
645
                        this->textBox60 = (gcnew System::Windows::Forms::TextBox());
646
                        this->label60 = (gcnew System::Windows::Forms::Label());
647
                        this->textBox61 = (gcnew System::Windows::Forms::TextBox());
648
                        this->label61 = (gcnew System::Windows::Forms::Label());
649
                        this->textBox62 = (gcnew System::Windows::Forms::TextBox());
650
                        this->label62 = (gcnew System::Windows::Forms::Label());
651
                        this->textBox63 = (gcnew System::Windows::Forms::TextBox());
652
                        this->label63 = (gcnew System::Windows::Forms::Label());
653
                        this->textBox64 = (gcnew System::Windows::Forms::TextBox());
654
                        this->label64 = (gcnew System::Windows::Forms::Label());
655
                        this->textBox33 = (gcnew System::Windows::Forms::TextBox());
656
                        this->label33 = (gcnew System::Windows::Forms::Label());
657
                        this->textBox34 = (gcnew System::Windows::Forms::TextBox());
658
                        this->label34 = (gcnew System::Windows::Forms::Label());
659
                        this->textBox35 = (gcnew System::Windows::Forms::TextBox());
660
                        this->label35 = (gcnew System::Windows::Forms::Label());
661
                        this->textBox36 = (gcnew System::Windows::Forms::TextBox());
662
                        this->label36 = (gcnew System::Windows::Forms::Label());
663
                        this->textBox37 = (gcnew System::Windows::Forms::TextBox());
664
                        this->label37 = (gcnew System::Windows::Forms::Label());
665
                        this->textBox38 = (gcnew System::Windows::Forms::TextBox());
666
                        this->label38 = (gcnew System::Windows::Forms::Label());
667
                        this->textBox39 = (gcnew System::Windows::Forms::TextBox());
668
                        this->label39 = (gcnew System::Windows::Forms::Label());
669
                        this->textBox40 = (gcnew System::Windows::Forms::TextBox());
670
                        this->label40 = (gcnew System::Windows::Forms::Label());
671
                        this->textBox41 = (gcnew System::Windows::Forms::TextBox());
672
                        this->label41 = (gcnew System::Windows::Forms::Label());
673
                        this->textBox42 = (gcnew System::Windows::Forms::TextBox());
674
                        this->label42 = (gcnew System::Windows::Forms::Label());
675
                        this->textBox43 = (gcnew System::Windows::Forms::TextBox());
676
                        this->label43 = (gcnew System::Windows::Forms::Label());
677
                        this->textBox44 = (gcnew System::Windows::Forms::TextBox());
678
                        this->label44 = (gcnew System::Windows::Forms::Label());
679 32 robfinch
                        this->txtR35 = (gcnew System::Windows::Forms::TextBox());
680 30 robfinch
                        this->label45 = (gcnew System::Windows::Forms::Label());
681 32 robfinch
                        this->txtR34 = (gcnew System::Windows::Forms::TextBox());
682 30 robfinch
                        this->label46 = (gcnew System::Windows::Forms::Label());
683 32 robfinch
                        this->txtR33 = (gcnew System::Windows::Forms::TextBox());
684 30 robfinch
                        this->label47 = (gcnew System::Windows::Forms::Label());
685 32 robfinch
                        this->txtR32 = (gcnew System::Windows::Forms::TextBox());
686 30 robfinch
                        this->label48 = (gcnew System::Windows::Forms::Label());
687 32 robfinch
                        this->txtR31 = (gcnew System::Windows::Forms::TextBox());
688 30 robfinch
                        this->label17 = (gcnew System::Windows::Forms::Label());
689 32 robfinch
                        this->txtR30 = (gcnew System::Windows::Forms::TextBox());
690 30 robfinch
                        this->label18 = (gcnew System::Windows::Forms::Label());
691 32 robfinch
                        this->txtR29 = (gcnew System::Windows::Forms::TextBox());
692 30 robfinch
                        this->label19 = (gcnew System::Windows::Forms::Label());
693 32 robfinch
                        this->txtR28 = (gcnew System::Windows::Forms::TextBox());
694 30 robfinch
                        this->label20 = (gcnew System::Windows::Forms::Label());
695
                        this->txtR27 = (gcnew System::Windows::Forms::TextBox());
696
                        this->label21 = (gcnew System::Windows::Forms::Label());
697
                        this->txtR26 = (gcnew System::Windows::Forms::TextBox());
698
                        this->label22 = (gcnew System::Windows::Forms::Label());
699
                        this->txtR25 = (gcnew System::Windows::Forms::TextBox());
700
                        this->label23 = (gcnew System::Windows::Forms::Label());
701
                        this->txtR24 = (gcnew System::Windows::Forms::TextBox());
702
                        this->label24 = (gcnew System::Windows::Forms::Label());
703
                        this->txtR23 = (gcnew System::Windows::Forms::TextBox());
704
                        this->label25 = (gcnew System::Windows::Forms::Label());
705
                        this->txtR22 = (gcnew System::Windows::Forms::TextBox());
706
                        this->label26 = (gcnew System::Windows::Forms::Label());
707
                        this->txtR21 = (gcnew System::Windows::Forms::TextBox());
708
                        this->label27 = (gcnew System::Windows::Forms::Label());
709
                        this->txtR20 = (gcnew System::Windows::Forms::TextBox());
710
                        this->label28 = (gcnew System::Windows::Forms::Label());
711
                        this->txtR19 = (gcnew System::Windows::Forms::TextBox());
712
                        this->label29 = (gcnew System::Windows::Forms::Label());
713
                        this->txtR18 = (gcnew System::Windows::Forms::TextBox());
714
                        this->label30 = (gcnew System::Windows::Forms::Label());
715
                        this->txtR17 = (gcnew System::Windows::Forms::TextBox());
716
                        this->label31 = (gcnew System::Windows::Forms::Label());
717
                        this->txtR16 = (gcnew System::Windows::Forms::TextBox());
718
                        this->label32 = (gcnew System::Windows::Forms::Label());
719
                        this->txtR15 = (gcnew System::Windows::Forms::TextBox());
720
                        this->label9 = (gcnew System::Windows::Forms::Label());
721
                        this->txtR14 = (gcnew System::Windows::Forms::TextBox());
722
                        this->label10 = (gcnew System::Windows::Forms::Label());
723
                        this->txtR13 = (gcnew System::Windows::Forms::TextBox());
724
                        this->label11 = (gcnew System::Windows::Forms::Label());
725
                        this->txtR12 = (gcnew System::Windows::Forms::TextBox());
726
                        this->label12 = (gcnew System::Windows::Forms::Label());
727
                        this->txtR11 = (gcnew System::Windows::Forms::TextBox());
728
                        this->label13 = (gcnew System::Windows::Forms::Label());
729
                        this->txtR10 = (gcnew System::Windows::Forms::TextBox());
730
                        this->label14 = (gcnew System::Windows::Forms::Label());
731
                        this->txtR9 = (gcnew System::Windows::Forms::TextBox());
732
                        this->label15 = (gcnew System::Windows::Forms::Label());
733
                        this->txtR8 = (gcnew System::Windows::Forms::TextBox());
734
                        this->label16 = (gcnew System::Windows::Forms::Label());
735
                        this->txtR7 = (gcnew System::Windows::Forms::TextBox());
736
                        this->label5 = (gcnew System::Windows::Forms::Label());
737
                        this->txtR6 = (gcnew System::Windows::Forms::TextBox());
738
                        this->label6 = (gcnew System::Windows::Forms::Label());
739
                        this->txtR5 = (gcnew System::Windows::Forms::TextBox());
740
                        this->label7 = (gcnew System::Windows::Forms::Label());
741
                        this->txtR4 = (gcnew System::Windows::Forms::TextBox());
742
                        this->label8 = (gcnew System::Windows::Forms::Label());
743
                        this->txtR3 = (gcnew System::Windows::Forms::TextBox());
744
                        this->label3 = (gcnew System::Windows::Forms::Label());
745
                        this->txtR2 = (gcnew System::Windows::Forms::TextBox());
746
                        this->label4 = (gcnew System::Windows::Forms::Label());
747
                        this->txtR1 = (gcnew System::Windows::Forms::TextBox());
748
                        this->label2 = (gcnew System::Windows::Forms::Label());
749
                        this->txtR0 = (gcnew System::Windows::Forms::TextBox());
750
                        this->label1 = (gcnew System::Windows::Forms::Label());
751
                        this->tabPage2 = (gcnew System::Windows::Forms::TabPage());
752
                        this->txtTick = (gcnew System::Windows::Forms::TextBox());
753
                        this->label118 = (gcnew System::Windows::Forms::Label());
754
                        this->txtLC = (gcnew System::Windows::Forms::TextBox());
755
                        this->label117 = (gcnew System::Windows::Forms::Label());
756
                        this->label116 = (gcnew System::Windows::Forms::Label());
757
                        this->textBox101 = (gcnew System::Windows::Forms::TextBox());
758
                        this->label115 = (gcnew System::Windows::Forms::Label());
759
                        this->textBox100 = (gcnew System::Windows::Forms::TextBox());
760
                        this->label114 = (gcnew System::Windows::Forms::Label());
761
                        this->textBox99 = (gcnew System::Windows::Forms::TextBox());
762
                        this->label113 = (gcnew System::Windows::Forms::Label());
763
                        this->textBox98 = (gcnew System::Windows::Forms::TextBox());
764
                        this->label112 = (gcnew System::Windows::Forms::Label());
765
                        this->textBox97 = (gcnew System::Windows::Forms::TextBox());
766
                        this->label111 = (gcnew System::Windows::Forms::Label());
767 32 robfinch
                        this->txtDBAD0 = (gcnew System::Windows::Forms::TextBox());
768 30 robfinch
                        this->label110 = (gcnew System::Windows::Forms::Label());
769
                        this->label109 = (gcnew System::Windows::Forms::Label());
770
                        this->label108 = (gcnew System::Windows::Forms::Label());
771
                        this->label107 = (gcnew System::Windows::Forms::Label());
772
                        this->label106 = (gcnew System::Windows::Forms::Label());
773
                        this->label105 = (gcnew System::Windows::Forms::Label());
774
                        this->textBox94 = (gcnew System::Windows::Forms::TextBox());
775
                        this->txtCs = (gcnew System::Windows::Forms::TextBox());
776
                        this->label104 = (gcnew System::Windows::Forms::Label());
777 32 robfinch
                        this->txtSSLmt = (gcnew System::Windows::Forms::TextBox());
778 30 robfinch
                        this->txtSs = (gcnew System::Windows::Forms::TextBox());
779
                        this->label103 = (gcnew System::Windows::Forms::Label());
780
                        this->textBox90 = (gcnew System::Windows::Forms::TextBox());
781
                        this->txtHs = (gcnew System::Windows::Forms::TextBox());
782
                        this->label102 = (gcnew System::Windows::Forms::Label());
783
                        this->textBox88 = (gcnew System::Windows::Forms::TextBox());
784
                        this->txtGs = (gcnew System::Windows::Forms::TextBox());
785
                        this->label101 = (gcnew System::Windows::Forms::Label());
786
                        this->textBox86 = (gcnew System::Windows::Forms::TextBox());
787
                        this->txtFs = (gcnew System::Windows::Forms::TextBox());
788
                        this->label100 = (gcnew System::Windows::Forms::Label());
789
                        this->textBox84 = (gcnew System::Windows::Forms::TextBox());
790
                        this->txtEs = (gcnew System::Windows::Forms::TextBox());
791
                        this->label99 = (gcnew System::Windows::Forms::Label());
792
                        this->textBox82 = (gcnew System::Windows::Forms::TextBox());
793
                        this->txtDs = (gcnew System::Windows::Forms::TextBox());
794
                        this->label98 = (gcnew System::Windows::Forms::Label());
795 32 robfinch
                        this->txtZSLmt = (gcnew System::Windows::Forms::TextBox());
796 30 robfinch
                        this->txtZs = (gcnew System::Windows::Forms::TextBox());
797
                        this->label97 = (gcnew System::Windows::Forms::Label());
798
                        this->txtCa15 = (gcnew System::Windows::Forms::TextBox());
799
                        this->label96 = (gcnew System::Windows::Forms::Label());
800
                        this->txtCa14 = (gcnew System::Windows::Forms::TextBox());
801
                        this->label95 = (gcnew System::Windows::Forms::Label());
802
                        this->txtCa13 = (gcnew System::Windows::Forms::TextBox());
803
                        this->label94 = (gcnew System::Windows::Forms::Label());
804
                        this->txtCa12 = (gcnew System::Windows::Forms::TextBox());
805
                        this->label93 = (gcnew System::Windows::Forms::Label());
806
                        this->txtCa11 = (gcnew System::Windows::Forms::TextBox());
807
                        this->label92 = (gcnew System::Windows::Forms::Label());
808
                        this->txtCa10 = (gcnew System::Windows::Forms::TextBox());
809
                        this->label91 = (gcnew System::Windows::Forms::Label());
810
                        this->txtCa9 = (gcnew System::Windows::Forms::TextBox());
811
                        this->label90 = (gcnew System::Windows::Forms::Label());
812
                        this->txtCa8 = (gcnew System::Windows::Forms::TextBox());
813
                        this->label89 = (gcnew System::Windows::Forms::Label());
814
                        this->txtCa7 = (gcnew System::Windows::Forms::TextBox());
815
                        this->label88 = (gcnew System::Windows::Forms::Label());
816
                        this->txtCa6 = (gcnew System::Windows::Forms::TextBox());
817
                        this->label87 = (gcnew System::Windows::Forms::Label());
818
                        this->txtCa5 = (gcnew System::Windows::Forms::TextBox());
819
                        this->label86 = (gcnew System::Windows::Forms::Label());
820
                        this->txtCa4 = (gcnew System::Windows::Forms::TextBox());
821
                        this->label85 = (gcnew System::Windows::Forms::Label());
822
                        this->txtCa3 = (gcnew System::Windows::Forms::TextBox());
823
                        this->label84 = (gcnew System::Windows::Forms::Label());
824
                        this->txtCa2 = (gcnew System::Windows::Forms::TextBox());
825
                        this->label83 = (gcnew System::Windows::Forms::Label());
826
                        this->txtCa1 = (gcnew System::Windows::Forms::TextBox());
827
                        this->label82 = (gcnew System::Windows::Forms::Label());
828
                        this->textBox16 = (gcnew System::Windows::Forms::TextBox());
829
                        this->label81 = (gcnew System::Windows::Forms::Label());
830 32 robfinch
                        this->txtP14 = (gcnew System::Windows::Forms::TextBox());
831 30 robfinch
                        this->label80 = (gcnew System::Windows::Forms::Label());
832 32 robfinch
                        this->txtP13 = (gcnew System::Windows::Forms::TextBox());
833 30 robfinch
                        this->label79 = (gcnew System::Windows::Forms::Label());
834 32 robfinch
                        this->txtP12 = (gcnew System::Windows::Forms::TextBox());
835 30 robfinch
                        this->label78 = (gcnew System::Windows::Forms::Label());
836 32 robfinch
                        this->txtP11 = (gcnew System::Windows::Forms::TextBox());
837 30 robfinch
                        this->label77 = (gcnew System::Windows::Forms::Label());
838 32 robfinch
                        this->txtP15 = (gcnew System::Windows::Forms::TextBox());
839 30 robfinch
                        this->label76 = (gcnew System::Windows::Forms::Label());
840 32 robfinch
                        this->txtP10 = (gcnew System::Windows::Forms::TextBox());
841 30 robfinch
                        this->label75 = (gcnew System::Windows::Forms::Label());
842 32 robfinch
                        this->txtP9 = (gcnew System::Windows::Forms::TextBox());
843 30 robfinch
                        this->label74 = (gcnew System::Windows::Forms::Label());
844 32 robfinch
                        this->txtP8 = (gcnew System::Windows::Forms::TextBox());
845 30 robfinch
                        this->label73 = (gcnew System::Windows::Forms::Label());
846
                        this->txtP7 = (gcnew System::Windows::Forms::TextBox());
847
                        this->label72 = (gcnew System::Windows::Forms::Label());
848
                        this->txtP6 = (gcnew System::Windows::Forms::TextBox());
849
                        this->label71 = (gcnew System::Windows::Forms::Label());
850
                        this->txtP5 = (gcnew System::Windows::Forms::TextBox());
851
                        this->label70 = (gcnew System::Windows::Forms::Label());
852
                        this->txtP4 = (gcnew System::Windows::Forms::TextBox());
853
                        this->label69 = (gcnew System::Windows::Forms::Label());
854
                        this->txtP3 = (gcnew System::Windows::Forms::TextBox());
855
                        this->label68 = (gcnew System::Windows::Forms::Label());
856
                        this->txtP2 = (gcnew System::Windows::Forms::TextBox());
857
                        this->label67 = (gcnew System::Windows::Forms::Label());
858
                        this->txtP1 = (gcnew System::Windows::Forms::TextBox());
859
                        this->label66 = (gcnew System::Windows::Forms::Label());
860
                        this->txtP0 = (gcnew System::Windows::Forms::TextBox());
861
                        this->label65 = (gcnew System::Windows::Forms::Label());
862
                        this->tabControl1->SuspendLayout();
863
                        this->tabPage1->SuspendLayout();
864
                        this->tabPage2->SuspendLayout();
865
                        this->SuspendLayout();
866
                        // 
867
                        // tabControl1
868
                        // 
869
                        this->tabControl1->Controls->Add(this->tabPage1);
870
                        this->tabControl1->Controls->Add(this->tabPage2);
871
                        this->tabControl1->Location = System::Drawing::Point(12, 12);
872
                        this->tabControl1->Name = L"tabControl1";
873
                        this->tabControl1->SelectedIndex = 0;
874
                        this->tabControl1->Size = System::Drawing::Size(743, 507);
875
                        this->tabControl1->TabIndex = 0;
876
                        // 
877
                        // tabPage1
878
                        // 
879
                        this->tabPage1->Controls->Add(this->textBox49);
880
                        this->tabPage1->Controls->Add(this->label49);
881
                        this->tabPage1->Controls->Add(this->textBox50);
882
                        this->tabPage1->Controls->Add(this->label50);
883
                        this->tabPage1->Controls->Add(this->textBox51);
884
                        this->tabPage1->Controls->Add(this->label51);
885
                        this->tabPage1->Controls->Add(this->textBox52);
886
                        this->tabPage1->Controls->Add(this->label52);
887
                        this->tabPage1->Controls->Add(this->textBox53);
888
                        this->tabPage1->Controls->Add(this->label53);
889
                        this->tabPage1->Controls->Add(this->textBox54);
890
                        this->tabPage1->Controls->Add(this->label54);
891
                        this->tabPage1->Controls->Add(this->textBox55);
892
                        this->tabPage1->Controls->Add(this->label55);
893
                        this->tabPage1->Controls->Add(this->textBox56);
894
                        this->tabPage1->Controls->Add(this->label56);
895
                        this->tabPage1->Controls->Add(this->textBox57);
896
                        this->tabPage1->Controls->Add(this->label57);
897
                        this->tabPage1->Controls->Add(this->textBox58);
898
                        this->tabPage1->Controls->Add(this->label58);
899
                        this->tabPage1->Controls->Add(this->textBox59);
900
                        this->tabPage1->Controls->Add(this->label59);
901
                        this->tabPage1->Controls->Add(this->textBox60);
902
                        this->tabPage1->Controls->Add(this->label60);
903
                        this->tabPage1->Controls->Add(this->textBox61);
904
                        this->tabPage1->Controls->Add(this->label61);
905
                        this->tabPage1->Controls->Add(this->textBox62);
906
                        this->tabPage1->Controls->Add(this->label62);
907
                        this->tabPage1->Controls->Add(this->textBox63);
908
                        this->tabPage1->Controls->Add(this->label63);
909
                        this->tabPage1->Controls->Add(this->textBox64);
910
                        this->tabPage1->Controls->Add(this->label64);
911
                        this->tabPage1->Controls->Add(this->textBox33);
912
                        this->tabPage1->Controls->Add(this->label33);
913
                        this->tabPage1->Controls->Add(this->textBox34);
914
                        this->tabPage1->Controls->Add(this->label34);
915
                        this->tabPage1->Controls->Add(this->textBox35);
916
                        this->tabPage1->Controls->Add(this->label35);
917
                        this->tabPage1->Controls->Add(this->textBox36);
918
                        this->tabPage1->Controls->Add(this->label36);
919
                        this->tabPage1->Controls->Add(this->textBox37);
920
                        this->tabPage1->Controls->Add(this->label37);
921
                        this->tabPage1->Controls->Add(this->textBox38);
922
                        this->tabPage1->Controls->Add(this->label38);
923
                        this->tabPage1->Controls->Add(this->textBox39);
924
                        this->tabPage1->Controls->Add(this->label39);
925
                        this->tabPage1->Controls->Add(this->textBox40);
926
                        this->tabPage1->Controls->Add(this->label40);
927
                        this->tabPage1->Controls->Add(this->textBox41);
928
                        this->tabPage1->Controls->Add(this->label41);
929
                        this->tabPage1->Controls->Add(this->textBox42);
930
                        this->tabPage1->Controls->Add(this->label42);
931
                        this->tabPage1->Controls->Add(this->textBox43);
932
                        this->tabPage1->Controls->Add(this->label43);
933
                        this->tabPage1->Controls->Add(this->textBox44);
934
                        this->tabPage1->Controls->Add(this->label44);
935 32 robfinch
                        this->tabPage1->Controls->Add(this->txtR35);
936 30 robfinch
                        this->tabPage1->Controls->Add(this->label45);
937 32 robfinch
                        this->tabPage1->Controls->Add(this->txtR34);
938 30 robfinch
                        this->tabPage1->Controls->Add(this->label46);
939 32 robfinch
                        this->tabPage1->Controls->Add(this->txtR33);
940 30 robfinch
                        this->tabPage1->Controls->Add(this->label47);
941 32 robfinch
                        this->tabPage1->Controls->Add(this->txtR32);
942 30 robfinch
                        this->tabPage1->Controls->Add(this->label48);
943 32 robfinch
                        this->tabPage1->Controls->Add(this->txtR31);
944 30 robfinch
                        this->tabPage1->Controls->Add(this->label17);
945 32 robfinch
                        this->tabPage1->Controls->Add(this->txtR30);
946 30 robfinch
                        this->tabPage1->Controls->Add(this->label18);
947 32 robfinch
                        this->tabPage1->Controls->Add(this->txtR29);
948 30 robfinch
                        this->tabPage1->Controls->Add(this->label19);
949 32 robfinch
                        this->tabPage1->Controls->Add(this->txtR28);
950 30 robfinch
                        this->tabPage1->Controls->Add(this->label20);
951
                        this->tabPage1->Controls->Add(this->txtR27);
952
                        this->tabPage1->Controls->Add(this->label21);
953
                        this->tabPage1->Controls->Add(this->txtR26);
954
                        this->tabPage1->Controls->Add(this->label22);
955
                        this->tabPage1->Controls->Add(this->txtR25);
956
                        this->tabPage1->Controls->Add(this->label23);
957
                        this->tabPage1->Controls->Add(this->txtR24);
958
                        this->tabPage1->Controls->Add(this->label24);
959
                        this->tabPage1->Controls->Add(this->txtR23);
960
                        this->tabPage1->Controls->Add(this->label25);
961
                        this->tabPage1->Controls->Add(this->txtR22);
962
                        this->tabPage1->Controls->Add(this->label26);
963
                        this->tabPage1->Controls->Add(this->txtR21);
964
                        this->tabPage1->Controls->Add(this->label27);
965
                        this->tabPage1->Controls->Add(this->txtR20);
966
                        this->tabPage1->Controls->Add(this->label28);
967
                        this->tabPage1->Controls->Add(this->txtR19);
968
                        this->tabPage1->Controls->Add(this->label29);
969
                        this->tabPage1->Controls->Add(this->txtR18);
970
                        this->tabPage1->Controls->Add(this->label30);
971
                        this->tabPage1->Controls->Add(this->txtR17);
972
                        this->tabPage1->Controls->Add(this->label31);
973
                        this->tabPage1->Controls->Add(this->txtR16);
974
                        this->tabPage1->Controls->Add(this->label32);
975
                        this->tabPage1->Controls->Add(this->txtR15);
976
                        this->tabPage1->Controls->Add(this->label9);
977
                        this->tabPage1->Controls->Add(this->txtR14);
978
                        this->tabPage1->Controls->Add(this->label10);
979
                        this->tabPage1->Controls->Add(this->txtR13);
980
                        this->tabPage1->Controls->Add(this->label11);
981
                        this->tabPage1->Controls->Add(this->txtR12);
982
                        this->tabPage1->Controls->Add(this->label12);
983
                        this->tabPage1->Controls->Add(this->txtR11);
984
                        this->tabPage1->Controls->Add(this->label13);
985
                        this->tabPage1->Controls->Add(this->txtR10);
986
                        this->tabPage1->Controls->Add(this->label14);
987
                        this->tabPage1->Controls->Add(this->txtR9);
988
                        this->tabPage1->Controls->Add(this->label15);
989
                        this->tabPage1->Controls->Add(this->txtR8);
990
                        this->tabPage1->Controls->Add(this->label16);
991
                        this->tabPage1->Controls->Add(this->txtR7);
992
                        this->tabPage1->Controls->Add(this->label5);
993
                        this->tabPage1->Controls->Add(this->txtR6);
994
                        this->tabPage1->Controls->Add(this->label6);
995
                        this->tabPage1->Controls->Add(this->txtR5);
996
                        this->tabPage1->Controls->Add(this->label7);
997
                        this->tabPage1->Controls->Add(this->txtR4);
998
                        this->tabPage1->Controls->Add(this->label8);
999
                        this->tabPage1->Controls->Add(this->txtR3);
1000
                        this->tabPage1->Controls->Add(this->label3);
1001
                        this->tabPage1->Controls->Add(this->txtR2);
1002
                        this->tabPage1->Controls->Add(this->label4);
1003
                        this->tabPage1->Controls->Add(this->txtR1);
1004
                        this->tabPage1->Controls->Add(this->label2);
1005
                        this->tabPage1->Controls->Add(this->txtR0);
1006
                        this->tabPage1->Controls->Add(this->label1);
1007
                        this->tabPage1->Location = System::Drawing::Point(4, 22);
1008
                        this->tabPage1->Name = L"tabPage1";
1009
                        this->tabPage1->Padding = System::Windows::Forms::Padding(3);
1010
                        this->tabPage1->Size = System::Drawing::Size(735, 481);
1011
                        this->tabPage1->TabIndex = 0;
1012
                        this->tabPage1->Text = L"General Registers";
1013
                        this->tabPage1->UseVisualStyleBackColor = true;
1014
                        // 
1015
                        // textBox49
1016
                        // 
1017
                        this->textBox49->Location = System::Drawing::Point(516, 403);
1018
                        this->textBox49->Name = L"textBox49";
1019
                        this->textBox49->Size = System::Drawing::Size(121, 20);
1020
                        this->textBox49->TabIndex = 127;
1021
                        this->textBox49->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1022
                        // 
1023
                        // label49
1024
                        // 
1025
                        this->label49->AutoSize = true;
1026
                        this->label49->Location = System::Drawing::Point(489, 406);
1027
                        this->label49->Name = L"label49";
1028
                        this->label49->Size = System::Drawing::Size(27, 13);
1029
                        this->label49->TabIndex = 126;
1030
                        this->label49->Text = L"R63";
1031
                        // 
1032
                        // textBox50
1033
                        // 
1034
                        this->textBox50->Location = System::Drawing::Point(516, 377);
1035
                        this->textBox50->Name = L"textBox50";
1036
                        this->textBox50->Size = System::Drawing::Size(121, 20);
1037
                        this->textBox50->TabIndex = 125;
1038
                        this->textBox50->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1039
                        // 
1040
                        // label50
1041
                        // 
1042
                        this->label50->AutoSize = true;
1043
                        this->label50->Location = System::Drawing::Point(489, 380);
1044
                        this->label50->Name = L"label50";
1045
                        this->label50->Size = System::Drawing::Size(27, 13);
1046
                        this->label50->TabIndex = 124;
1047
                        this->label50->Text = L"R62";
1048
                        // 
1049
                        // textBox51
1050
                        // 
1051
                        this->textBox51->Location = System::Drawing::Point(516, 351);
1052
                        this->textBox51->Name = L"textBox51";
1053
                        this->textBox51->Size = System::Drawing::Size(121, 20);
1054
                        this->textBox51->TabIndex = 123;
1055
                        this->textBox51->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1056
                        // 
1057
                        // label51
1058
                        // 
1059
                        this->label51->AutoSize = true;
1060
                        this->label51->Location = System::Drawing::Point(489, 354);
1061
                        this->label51->Name = L"label51";
1062
                        this->label51->Size = System::Drawing::Size(27, 13);
1063
                        this->label51->TabIndex = 122;
1064
                        this->label51->Text = L"R61";
1065
                        // 
1066
                        // textBox52
1067
                        // 
1068
                        this->textBox52->Location = System::Drawing::Point(516, 325);
1069
                        this->textBox52->Name = L"textBox52";
1070
                        this->textBox52->Size = System::Drawing::Size(121, 20);
1071
                        this->textBox52->TabIndex = 121;
1072
                        this->textBox52->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1073
                        // 
1074
                        // label52
1075
                        // 
1076
                        this->label52->AutoSize = true;
1077
                        this->label52->Location = System::Drawing::Point(489, 328);
1078
                        this->label52->Name = L"label52";
1079
                        this->label52->Size = System::Drawing::Size(27, 13);
1080
                        this->label52->TabIndex = 120;
1081
                        this->label52->Text = L"R60";
1082
                        // 
1083
                        // textBox53
1084
                        // 
1085
                        this->textBox53->Location = System::Drawing::Point(516, 299);
1086
                        this->textBox53->Name = L"textBox53";
1087
                        this->textBox53->Size = System::Drawing::Size(121, 20);
1088
                        this->textBox53->TabIndex = 119;
1089
                        this->textBox53->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1090
                        // 
1091
                        // label53
1092
                        // 
1093
                        this->label53->AutoSize = true;
1094
                        this->label53->Location = System::Drawing::Point(489, 302);
1095
                        this->label53->Name = L"label53";
1096
                        this->label53->Size = System::Drawing::Size(27, 13);
1097
                        this->label53->TabIndex = 118;
1098
                        this->label53->Text = L"R59";
1099
                        // 
1100
                        // textBox54
1101
                        // 
1102
                        this->textBox54->Location = System::Drawing::Point(516, 273);
1103
                        this->textBox54->Name = L"textBox54";
1104
                        this->textBox54->Size = System::Drawing::Size(121, 20);
1105
                        this->textBox54->TabIndex = 117;
1106
                        this->textBox54->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1107
                        // 
1108
                        // label54
1109
                        // 
1110
                        this->label54->AutoSize = true;
1111
                        this->label54->Location = System::Drawing::Point(489, 276);
1112
                        this->label54->Name = L"label54";
1113
                        this->label54->Size = System::Drawing::Size(27, 13);
1114
                        this->label54->TabIndex = 116;
1115
                        this->label54->Text = L"R58";
1116
                        // 
1117
                        // textBox55
1118
                        // 
1119
                        this->textBox55->Location = System::Drawing::Point(516, 247);
1120
                        this->textBox55->Name = L"textBox55";
1121
                        this->textBox55->Size = System::Drawing::Size(121, 20);
1122
                        this->textBox55->TabIndex = 115;
1123
                        this->textBox55->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1124
                        // 
1125
                        // label55
1126
                        // 
1127
                        this->label55->AutoSize = true;
1128
                        this->label55->Location = System::Drawing::Point(489, 250);
1129
                        this->label55->Name = L"label55";
1130
                        this->label55->Size = System::Drawing::Size(27, 13);
1131
                        this->label55->TabIndex = 114;
1132
                        this->label55->Text = L"R57";
1133
                        // 
1134
                        // textBox56
1135
                        // 
1136
                        this->textBox56->Location = System::Drawing::Point(516, 221);
1137
                        this->textBox56->Name = L"textBox56";
1138
                        this->textBox56->Size = System::Drawing::Size(121, 20);
1139
                        this->textBox56->TabIndex = 113;
1140
                        this->textBox56->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1141
                        // 
1142
                        // label56
1143
                        // 
1144
                        this->label56->AutoSize = true;
1145
                        this->label56->Location = System::Drawing::Point(489, 224);
1146
                        this->label56->Name = L"label56";
1147
                        this->label56->Size = System::Drawing::Size(27, 13);
1148
                        this->label56->TabIndex = 112;
1149
                        this->label56->Text = L"R56";
1150
                        // 
1151
                        // textBox57
1152
                        // 
1153
                        this->textBox57->Location = System::Drawing::Point(516, 195);
1154
                        this->textBox57->Name = L"textBox57";
1155
                        this->textBox57->Size = System::Drawing::Size(121, 20);
1156
                        this->textBox57->TabIndex = 111;
1157
                        this->textBox57->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1158
                        // 
1159
                        // label57
1160
                        // 
1161
                        this->label57->AutoSize = true;
1162
                        this->label57->Location = System::Drawing::Point(489, 198);
1163
                        this->label57->Name = L"label57";
1164
                        this->label57->Size = System::Drawing::Size(27, 13);
1165
                        this->label57->TabIndex = 110;
1166
                        this->label57->Text = L"R55";
1167
                        // 
1168
                        // textBox58
1169
                        // 
1170
                        this->textBox58->Location = System::Drawing::Point(516, 169);
1171
                        this->textBox58->Name = L"textBox58";
1172
                        this->textBox58->Size = System::Drawing::Size(121, 20);
1173
                        this->textBox58->TabIndex = 109;
1174
                        this->textBox58->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1175
                        // 
1176
                        // label58
1177
                        // 
1178
                        this->label58->AutoSize = true;
1179
                        this->label58->Location = System::Drawing::Point(489, 172);
1180
                        this->label58->Name = L"label58";
1181
                        this->label58->Size = System::Drawing::Size(27, 13);
1182
                        this->label58->TabIndex = 108;
1183
                        this->label58->Text = L"R54";
1184
                        // 
1185
                        // textBox59
1186
                        // 
1187
                        this->textBox59->Location = System::Drawing::Point(516, 143);
1188
                        this->textBox59->Name = L"textBox59";
1189
                        this->textBox59->Size = System::Drawing::Size(121, 20);
1190
                        this->textBox59->TabIndex = 107;
1191
                        this->textBox59->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1192
                        // 
1193
                        // label59
1194
                        // 
1195
                        this->label59->AutoSize = true;
1196
                        this->label59->Location = System::Drawing::Point(489, 146);
1197
                        this->label59->Name = L"label59";
1198
                        this->label59->Size = System::Drawing::Size(27, 13);
1199
                        this->label59->TabIndex = 106;
1200
                        this->label59->Text = L"R53";
1201
                        // 
1202
                        // textBox60
1203
                        // 
1204
                        this->textBox60->Location = System::Drawing::Point(516, 117);
1205
                        this->textBox60->Name = L"textBox60";
1206
                        this->textBox60->Size = System::Drawing::Size(121, 20);
1207
                        this->textBox60->TabIndex = 105;
1208
                        this->textBox60->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1209
                        // 
1210
                        // label60
1211
                        // 
1212
                        this->label60->AutoSize = true;
1213
                        this->label60->Location = System::Drawing::Point(489, 120);
1214
                        this->label60->Name = L"label60";
1215
                        this->label60->Size = System::Drawing::Size(27, 13);
1216
                        this->label60->TabIndex = 104;
1217
                        this->label60->Text = L"R52";
1218
                        // 
1219
                        // textBox61
1220
                        // 
1221
                        this->textBox61->Location = System::Drawing::Point(516, 91);
1222
                        this->textBox61->Name = L"textBox61";
1223
                        this->textBox61->Size = System::Drawing::Size(121, 20);
1224
                        this->textBox61->TabIndex = 103;
1225
                        this->textBox61->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1226
                        // 
1227
                        // label61
1228
                        // 
1229
                        this->label61->AutoSize = true;
1230
                        this->label61->Location = System::Drawing::Point(489, 94);
1231
                        this->label61->Name = L"label61";
1232
                        this->label61->Size = System::Drawing::Size(27, 13);
1233
                        this->label61->TabIndex = 102;
1234
                        this->label61->Text = L"R51";
1235
                        // 
1236
                        // textBox62
1237
                        // 
1238
                        this->textBox62->Location = System::Drawing::Point(516, 65);
1239
                        this->textBox62->Name = L"textBox62";
1240
                        this->textBox62->Size = System::Drawing::Size(121, 20);
1241
                        this->textBox62->TabIndex = 101;
1242
                        this->textBox62->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1243
                        // 
1244
                        // label62
1245
                        // 
1246
                        this->label62->AutoSize = true;
1247
                        this->label62->Location = System::Drawing::Point(489, 68);
1248
                        this->label62->Name = L"label62";
1249
                        this->label62->Size = System::Drawing::Size(27, 13);
1250
                        this->label62->TabIndex = 100;
1251
                        this->label62->Text = L"R50";
1252
                        // 
1253
                        // textBox63
1254
                        // 
1255
                        this->textBox63->Location = System::Drawing::Point(516, 39);
1256
                        this->textBox63->Name = L"textBox63";
1257
                        this->textBox63->Size = System::Drawing::Size(121, 20);
1258
                        this->textBox63->TabIndex = 99;
1259
                        this->textBox63->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1260
                        // 
1261
                        // label63
1262
                        // 
1263
                        this->label63->AutoSize = true;
1264
                        this->label63->Location = System::Drawing::Point(489, 42);
1265
                        this->label63->Name = L"label63";
1266
                        this->label63->Size = System::Drawing::Size(27, 13);
1267
                        this->label63->TabIndex = 98;
1268
                        this->label63->Text = L"R49";
1269
                        // 
1270
                        // textBox64
1271
                        // 
1272
                        this->textBox64->Location = System::Drawing::Point(516, 13);
1273
                        this->textBox64->Name = L"textBox64";
1274
                        this->textBox64->Size = System::Drawing::Size(121, 20);
1275
                        this->textBox64->TabIndex = 97;
1276
                        this->textBox64->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1277
                        // 
1278
                        // label64
1279
                        // 
1280
                        this->label64->AutoSize = true;
1281
                        this->label64->Location = System::Drawing::Point(489, 16);
1282
                        this->label64->Name = L"label64";
1283
                        this->label64->Size = System::Drawing::Size(27, 13);
1284
                        this->label64->TabIndex = 96;
1285
                        this->label64->Text = L"R48";
1286
                        // 
1287
                        // textBox33
1288
                        // 
1289
                        this->textBox33->Location = System::Drawing::Point(354, 403);
1290
                        this->textBox33->Name = L"textBox33";
1291
                        this->textBox33->Size = System::Drawing::Size(121, 20);
1292
                        this->textBox33->TabIndex = 95;
1293
                        this->textBox33->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1294
                        // 
1295
                        // label33
1296
                        // 
1297
                        this->label33->AutoSize = true;
1298
                        this->label33->Location = System::Drawing::Point(327, 406);
1299
                        this->label33->Name = L"label33";
1300
                        this->label33->Size = System::Drawing::Size(27, 13);
1301
                        this->label33->TabIndex = 94;
1302
                        this->label33->Text = L"R47";
1303
                        // 
1304
                        // textBox34
1305
                        // 
1306
                        this->textBox34->Location = System::Drawing::Point(354, 377);
1307
                        this->textBox34->Name = L"textBox34";
1308
                        this->textBox34->Size = System::Drawing::Size(121, 20);
1309
                        this->textBox34->TabIndex = 93;
1310
                        this->textBox34->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1311
                        // 
1312
                        // label34
1313
                        // 
1314
                        this->label34->AutoSize = true;
1315
                        this->label34->Location = System::Drawing::Point(327, 380);
1316
                        this->label34->Name = L"label34";
1317
                        this->label34->Size = System::Drawing::Size(27, 13);
1318
                        this->label34->TabIndex = 92;
1319
                        this->label34->Text = L"R46";
1320
                        // 
1321
                        // textBox35
1322
                        // 
1323
                        this->textBox35->Location = System::Drawing::Point(354, 351);
1324
                        this->textBox35->Name = L"textBox35";
1325
                        this->textBox35->Size = System::Drawing::Size(121, 20);
1326
                        this->textBox35->TabIndex = 91;
1327
                        this->textBox35->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1328
                        // 
1329
                        // label35
1330
                        // 
1331
                        this->label35->AutoSize = true;
1332
                        this->label35->Location = System::Drawing::Point(327, 354);
1333
                        this->label35->Name = L"label35";
1334
                        this->label35->Size = System::Drawing::Size(27, 13);
1335
                        this->label35->TabIndex = 90;
1336
                        this->label35->Text = L"R45";
1337
                        // 
1338
                        // textBox36
1339
                        // 
1340
                        this->textBox36->Location = System::Drawing::Point(354, 325);
1341
                        this->textBox36->Name = L"textBox36";
1342
                        this->textBox36->Size = System::Drawing::Size(121, 20);
1343
                        this->textBox36->TabIndex = 89;
1344
                        this->textBox36->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1345
                        // 
1346
                        // label36
1347
                        // 
1348
                        this->label36->AutoSize = true;
1349
                        this->label36->Location = System::Drawing::Point(327, 328);
1350
                        this->label36->Name = L"label36";
1351
                        this->label36->Size = System::Drawing::Size(27, 13);
1352
                        this->label36->TabIndex = 88;
1353
                        this->label36->Text = L"R44";
1354
                        // 
1355
                        // textBox37
1356
                        // 
1357
                        this->textBox37->Location = System::Drawing::Point(354, 299);
1358
                        this->textBox37->Name = L"textBox37";
1359
                        this->textBox37->Size = System::Drawing::Size(121, 20);
1360
                        this->textBox37->TabIndex = 87;
1361
                        this->textBox37->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1362
                        // 
1363
                        // label37
1364
                        // 
1365
                        this->label37->AutoSize = true;
1366
                        this->label37->Location = System::Drawing::Point(327, 302);
1367
                        this->label37->Name = L"label37";
1368
                        this->label37->Size = System::Drawing::Size(27, 13);
1369
                        this->label37->TabIndex = 86;
1370
                        this->label37->Text = L"R43";
1371
                        // 
1372
                        // textBox38
1373
                        // 
1374
                        this->textBox38->Location = System::Drawing::Point(354, 273);
1375
                        this->textBox38->Name = L"textBox38";
1376
                        this->textBox38->Size = System::Drawing::Size(121, 20);
1377
                        this->textBox38->TabIndex = 85;
1378
                        this->textBox38->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1379
                        // 
1380
                        // label38
1381
                        // 
1382
                        this->label38->AutoSize = true;
1383
                        this->label38->Location = System::Drawing::Point(327, 276);
1384
                        this->label38->Name = L"label38";
1385
                        this->label38->Size = System::Drawing::Size(27, 13);
1386
                        this->label38->TabIndex = 84;
1387
                        this->label38->Text = L"R42";
1388
                        // 
1389
                        // textBox39
1390
                        // 
1391
                        this->textBox39->Location = System::Drawing::Point(354, 247);
1392
                        this->textBox39->Name = L"textBox39";
1393
                        this->textBox39->Size = System::Drawing::Size(121, 20);
1394
                        this->textBox39->TabIndex = 83;
1395
                        this->textBox39->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1396
                        // 
1397
                        // label39
1398
                        // 
1399
                        this->label39->AutoSize = true;
1400
                        this->label39->Location = System::Drawing::Point(327, 250);
1401
                        this->label39->Name = L"label39";
1402
                        this->label39->Size = System::Drawing::Size(27, 13);
1403
                        this->label39->TabIndex = 82;
1404
                        this->label39->Text = L"R41";
1405
                        // 
1406
                        // textBox40
1407
                        // 
1408
                        this->textBox40->Location = System::Drawing::Point(354, 221);
1409
                        this->textBox40->Name = L"textBox40";
1410
                        this->textBox40->Size = System::Drawing::Size(121, 20);
1411
                        this->textBox40->TabIndex = 81;
1412
                        this->textBox40->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1413
                        // 
1414
                        // label40
1415
                        // 
1416
                        this->label40->AutoSize = true;
1417
                        this->label40->Location = System::Drawing::Point(327, 224);
1418
                        this->label40->Name = L"label40";
1419
                        this->label40->Size = System::Drawing::Size(27, 13);
1420
                        this->label40->TabIndex = 80;
1421
                        this->label40->Text = L"R40";
1422
                        // 
1423
                        // textBox41
1424
                        // 
1425
                        this->textBox41->Location = System::Drawing::Point(354, 195);
1426
                        this->textBox41->Name = L"textBox41";
1427
                        this->textBox41->Size = System::Drawing::Size(121, 20);
1428
                        this->textBox41->TabIndex = 79;
1429
                        this->textBox41->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1430
                        // 
1431
                        // label41
1432
                        // 
1433
                        this->label41->AutoSize = true;
1434
                        this->label41->Location = System::Drawing::Point(327, 198);
1435
                        this->label41->Name = L"label41";
1436
                        this->label41->Size = System::Drawing::Size(27, 13);
1437
                        this->label41->TabIndex = 78;
1438
                        this->label41->Text = L"R39";
1439
                        // 
1440
                        // textBox42
1441
                        // 
1442
                        this->textBox42->Location = System::Drawing::Point(354, 169);
1443
                        this->textBox42->Name = L"textBox42";
1444
                        this->textBox42->Size = System::Drawing::Size(121, 20);
1445
                        this->textBox42->TabIndex = 77;
1446
                        this->textBox42->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1447
                        // 
1448
                        // label42
1449
                        // 
1450
                        this->label42->AutoSize = true;
1451
                        this->label42->Location = System::Drawing::Point(327, 172);
1452
                        this->label42->Name = L"label42";
1453
                        this->label42->Size = System::Drawing::Size(27, 13);
1454
                        this->label42->TabIndex = 76;
1455
                        this->label42->Text = L"R38";
1456
                        // 
1457
                        // textBox43
1458
                        // 
1459
                        this->textBox43->Location = System::Drawing::Point(354, 143);
1460
                        this->textBox43->Name = L"textBox43";
1461
                        this->textBox43->Size = System::Drawing::Size(121, 20);
1462
                        this->textBox43->TabIndex = 75;
1463
                        this->textBox43->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1464
                        // 
1465
                        // label43
1466
                        // 
1467
                        this->label43->AutoSize = true;
1468
                        this->label43->Location = System::Drawing::Point(327, 146);
1469
                        this->label43->Name = L"label43";
1470
                        this->label43->Size = System::Drawing::Size(27, 13);
1471
                        this->label43->TabIndex = 74;
1472
                        this->label43->Text = L"R37";
1473
                        // 
1474
                        // textBox44
1475
                        // 
1476
                        this->textBox44->Location = System::Drawing::Point(354, 117);
1477
                        this->textBox44->Name = L"textBox44";
1478
                        this->textBox44->Size = System::Drawing::Size(121, 20);
1479
                        this->textBox44->TabIndex = 73;
1480
                        this->textBox44->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1481
                        // 
1482
                        // label44
1483
                        // 
1484
                        this->label44->AutoSize = true;
1485
                        this->label44->Location = System::Drawing::Point(327, 120);
1486
                        this->label44->Name = L"label44";
1487
                        this->label44->Size = System::Drawing::Size(27, 13);
1488
                        this->label44->TabIndex = 72;
1489
                        this->label44->Text = L"R36";
1490
                        // 
1491 32 robfinch
                        // txtR35
1492 30 robfinch
                        // 
1493 32 robfinch
                        this->txtR35->Location = System::Drawing::Point(354, 91);
1494
                        this->txtR35->Name = L"txtR35";
1495
                        this->txtR35->Size = System::Drawing::Size(121, 20);
1496
                        this->txtR35->TabIndex = 71;
1497
                        this->txtR35->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1498 30 robfinch
                        // 
1499
                        // label45
1500
                        // 
1501
                        this->label45->AutoSize = true;
1502
                        this->label45->Location = System::Drawing::Point(327, 94);
1503
                        this->label45->Name = L"label45";
1504
                        this->label45->Size = System::Drawing::Size(27, 13);
1505
                        this->label45->TabIndex = 70;
1506
                        this->label45->Text = L"R35";
1507
                        // 
1508 32 robfinch
                        // txtR34
1509 30 robfinch
                        // 
1510 32 robfinch
                        this->txtR34->Location = System::Drawing::Point(354, 65);
1511
                        this->txtR34->Name = L"txtR34";
1512
                        this->txtR34->Size = System::Drawing::Size(121, 20);
1513
                        this->txtR34->TabIndex = 69;
1514
                        this->txtR34->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1515 30 robfinch
                        // 
1516
                        // label46
1517
                        // 
1518
                        this->label46->AutoSize = true;
1519
                        this->label46->Location = System::Drawing::Point(327, 68);
1520
                        this->label46->Name = L"label46";
1521
                        this->label46->Size = System::Drawing::Size(27, 13);
1522
                        this->label46->TabIndex = 68;
1523
                        this->label46->Text = L"R34";
1524
                        // 
1525 32 robfinch
                        // txtR33
1526 30 robfinch
                        // 
1527 32 robfinch
                        this->txtR33->Location = System::Drawing::Point(354, 39);
1528
                        this->txtR33->Name = L"txtR33";
1529
                        this->txtR33->Size = System::Drawing::Size(121, 20);
1530
                        this->txtR33->TabIndex = 67;
1531
                        this->txtR33->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1532 30 robfinch
                        // 
1533
                        // label47
1534
                        // 
1535
                        this->label47->AutoSize = true;
1536
                        this->label47->Location = System::Drawing::Point(327, 42);
1537
                        this->label47->Name = L"label47";
1538
                        this->label47->Size = System::Drawing::Size(27, 13);
1539
                        this->label47->TabIndex = 66;
1540
                        this->label47->Text = L"R33";
1541
                        // 
1542 32 robfinch
                        // txtR32
1543 30 robfinch
                        // 
1544 32 robfinch
                        this->txtR32->Location = System::Drawing::Point(354, 13);
1545
                        this->txtR32->Name = L"txtR32";
1546
                        this->txtR32->Size = System::Drawing::Size(121, 20);
1547
                        this->txtR32->TabIndex = 65;
1548
                        this->txtR32->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1549 30 robfinch
                        // 
1550
                        // label48
1551
                        // 
1552
                        this->label48->AutoSize = true;
1553
                        this->label48->Location = System::Drawing::Point(327, 16);
1554
                        this->label48->Name = L"label48";
1555
                        this->label48->Size = System::Drawing::Size(27, 13);
1556
                        this->label48->TabIndex = 64;
1557
                        this->label48->Text = L"R32";
1558
                        // 
1559 32 robfinch
                        // txtR31
1560 30 robfinch
                        // 
1561 32 robfinch
                        this->txtR31->Location = System::Drawing::Point(192, 403);
1562
                        this->txtR31->Name = L"txtR31";
1563
                        this->txtR31->Size = System::Drawing::Size(121, 20);
1564
                        this->txtR31->TabIndex = 63;
1565
                        this->txtR31->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1566 30 robfinch
                        // 
1567
                        // label17
1568
                        // 
1569
                        this->label17->AutoSize = true;
1570
                        this->label17->Location = System::Drawing::Point(165, 406);
1571
                        this->label17->Name = L"label17";
1572
                        this->label17->Size = System::Drawing::Size(27, 13);
1573
                        this->label17->TabIndex = 62;
1574
                        this->label17->Text = L"R31";
1575
                        // 
1576 32 robfinch
                        // txtR30
1577 30 robfinch
                        // 
1578 32 robfinch
                        this->txtR30->Location = System::Drawing::Point(192, 377);
1579
                        this->txtR30->Name = L"txtR30";
1580
                        this->txtR30->Size = System::Drawing::Size(121, 20);
1581
                        this->txtR30->TabIndex = 61;
1582
                        this->txtR30->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1583 30 robfinch
                        // 
1584
                        // label18
1585
                        // 
1586
                        this->label18->AutoSize = true;
1587
                        this->label18->Location = System::Drawing::Point(165, 380);
1588
                        this->label18->Name = L"label18";
1589
                        this->label18->Size = System::Drawing::Size(27, 13);
1590
                        this->label18->TabIndex = 60;
1591
                        this->label18->Text = L"R30";
1592
                        // 
1593 32 robfinch
                        // txtR29
1594 30 robfinch
                        // 
1595 32 robfinch
                        this->txtR29->Location = System::Drawing::Point(192, 351);
1596
                        this->txtR29->Name = L"txtR29";
1597
                        this->txtR29->Size = System::Drawing::Size(121, 20);
1598
                        this->txtR29->TabIndex = 59;
1599
                        this->txtR29->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1600 30 robfinch
                        // 
1601
                        // label19
1602
                        // 
1603
                        this->label19->AutoSize = true;
1604
                        this->label19->Location = System::Drawing::Point(165, 354);
1605
                        this->label19->Name = L"label19";
1606
                        this->label19->Size = System::Drawing::Size(27, 13);
1607
                        this->label19->TabIndex = 58;
1608
                        this->label19->Text = L"R29";
1609
                        // 
1610 32 robfinch
                        // txtR28
1611 30 robfinch
                        // 
1612 32 robfinch
                        this->txtR28->Location = System::Drawing::Point(192, 325);
1613
                        this->txtR28->Name = L"txtR28";
1614
                        this->txtR28->Size = System::Drawing::Size(121, 20);
1615
                        this->txtR28->TabIndex = 57;
1616
                        this->txtR28->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1617 30 robfinch
                        // 
1618
                        // label20
1619
                        // 
1620
                        this->label20->AutoSize = true;
1621
                        this->label20->Location = System::Drawing::Point(165, 328);
1622
                        this->label20->Name = L"label20";
1623
                        this->label20->Size = System::Drawing::Size(27, 13);
1624
                        this->label20->TabIndex = 56;
1625
                        this->label20->Text = L"R28";
1626
                        // 
1627
                        // txtR27
1628
                        // 
1629
                        this->txtR27->Location = System::Drawing::Point(192, 299);
1630
                        this->txtR27->Name = L"txtR27";
1631
                        this->txtR27->Size = System::Drawing::Size(121, 20);
1632
                        this->txtR27->TabIndex = 55;
1633
                        this->txtR27->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1634
                        // 
1635
                        // label21
1636
                        // 
1637
                        this->label21->AutoSize = true;
1638
                        this->label21->Location = System::Drawing::Point(165, 302);
1639
                        this->label21->Name = L"label21";
1640
                        this->label21->Size = System::Drawing::Size(27, 13);
1641
                        this->label21->TabIndex = 54;
1642
                        this->label21->Text = L"R27";
1643
                        // 
1644
                        // txtR26
1645
                        // 
1646
                        this->txtR26->Location = System::Drawing::Point(192, 273);
1647
                        this->txtR26->Name = L"txtR26";
1648
                        this->txtR26->Size = System::Drawing::Size(121, 20);
1649
                        this->txtR26->TabIndex = 53;
1650
                        this->txtR26->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1651
                        // 
1652
                        // label22
1653
                        // 
1654
                        this->label22->AutoSize = true;
1655
                        this->label22->Location = System::Drawing::Point(165, 276);
1656
                        this->label22->Name = L"label22";
1657
                        this->label22->Size = System::Drawing::Size(27, 13);
1658
                        this->label22->TabIndex = 52;
1659
                        this->label22->Text = L"R26";
1660
                        // 
1661
                        // txtR25
1662
                        // 
1663
                        this->txtR25->Location = System::Drawing::Point(192, 247);
1664
                        this->txtR25->Name = L"txtR25";
1665
                        this->txtR25->Size = System::Drawing::Size(121, 20);
1666
                        this->txtR25->TabIndex = 51;
1667
                        this->txtR25->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1668
                        // 
1669
                        // label23
1670
                        // 
1671
                        this->label23->AutoSize = true;
1672
                        this->label23->Location = System::Drawing::Point(165, 250);
1673
                        this->label23->Name = L"label23";
1674
                        this->label23->Size = System::Drawing::Size(27, 13);
1675
                        this->label23->TabIndex = 50;
1676
                        this->label23->Text = L"R25";
1677
                        // 
1678
                        // txtR24
1679
                        // 
1680
                        this->txtR24->Location = System::Drawing::Point(192, 221);
1681
                        this->txtR24->Name = L"txtR24";
1682
                        this->txtR24->Size = System::Drawing::Size(121, 20);
1683
                        this->txtR24->TabIndex = 49;
1684
                        this->txtR24->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1685
                        // 
1686
                        // label24
1687
                        // 
1688
                        this->label24->AutoSize = true;
1689
                        this->label24->Location = System::Drawing::Point(165, 224);
1690
                        this->label24->Name = L"label24";
1691
                        this->label24->Size = System::Drawing::Size(27, 13);
1692
                        this->label24->TabIndex = 48;
1693
                        this->label24->Text = L"R24";
1694
                        // 
1695
                        // txtR23
1696
                        // 
1697
                        this->txtR23->Location = System::Drawing::Point(192, 195);
1698
                        this->txtR23->Name = L"txtR23";
1699
                        this->txtR23->Size = System::Drawing::Size(121, 20);
1700
                        this->txtR23->TabIndex = 47;
1701
                        this->txtR23->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1702
                        // 
1703
                        // label25
1704
                        // 
1705
                        this->label25->AutoSize = true;
1706
                        this->label25->Location = System::Drawing::Point(165, 198);
1707
                        this->label25->Name = L"label25";
1708
                        this->label25->Size = System::Drawing::Size(27, 13);
1709
                        this->label25->TabIndex = 46;
1710
                        this->label25->Text = L"R23";
1711
                        // 
1712
                        // txtR22
1713
                        // 
1714
                        this->txtR22->Location = System::Drawing::Point(192, 169);
1715
                        this->txtR22->Name = L"txtR22";
1716
                        this->txtR22->Size = System::Drawing::Size(121, 20);
1717
                        this->txtR22->TabIndex = 45;
1718
                        this->txtR22->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1719
                        // 
1720
                        // label26
1721
                        // 
1722
                        this->label26->AutoSize = true;
1723
                        this->label26->Location = System::Drawing::Point(165, 172);
1724
                        this->label26->Name = L"label26";
1725
                        this->label26->Size = System::Drawing::Size(27, 13);
1726
                        this->label26->TabIndex = 44;
1727
                        this->label26->Text = L"R22";
1728
                        // 
1729
                        // txtR21
1730
                        // 
1731
                        this->txtR21->Location = System::Drawing::Point(192, 143);
1732
                        this->txtR21->Name = L"txtR21";
1733
                        this->txtR21->Size = System::Drawing::Size(121, 20);
1734
                        this->txtR21->TabIndex = 43;
1735
                        this->txtR21->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1736
                        // 
1737
                        // label27
1738
                        // 
1739
                        this->label27->AutoSize = true;
1740
                        this->label27->Location = System::Drawing::Point(165, 146);
1741
                        this->label27->Name = L"label27";
1742
                        this->label27->Size = System::Drawing::Size(27, 13);
1743
                        this->label27->TabIndex = 42;
1744
                        this->label27->Text = L"R21";
1745
                        // 
1746
                        // txtR20
1747
                        // 
1748
                        this->txtR20->Location = System::Drawing::Point(192, 117);
1749
                        this->txtR20->Name = L"txtR20";
1750
                        this->txtR20->Size = System::Drawing::Size(121, 20);
1751
                        this->txtR20->TabIndex = 41;
1752
                        this->txtR20->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1753
                        // 
1754
                        // label28
1755
                        // 
1756
                        this->label28->AutoSize = true;
1757
                        this->label28->Location = System::Drawing::Point(165, 120);
1758
                        this->label28->Name = L"label28";
1759
                        this->label28->Size = System::Drawing::Size(27, 13);
1760
                        this->label28->TabIndex = 40;
1761
                        this->label28->Text = L"R20";
1762
                        // 
1763
                        // txtR19
1764
                        // 
1765
                        this->txtR19->Location = System::Drawing::Point(192, 91);
1766
                        this->txtR19->Name = L"txtR19";
1767
                        this->txtR19->Size = System::Drawing::Size(121, 20);
1768
                        this->txtR19->TabIndex = 39;
1769
                        this->txtR19->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1770
                        // 
1771
                        // label29
1772
                        // 
1773
                        this->label29->AutoSize = true;
1774
                        this->label29->Location = System::Drawing::Point(165, 94);
1775
                        this->label29->Name = L"label29";
1776
                        this->label29->Size = System::Drawing::Size(27, 13);
1777
                        this->label29->TabIndex = 38;
1778
                        this->label29->Text = L"R19";
1779
                        // 
1780
                        // txtR18
1781
                        // 
1782
                        this->txtR18->Location = System::Drawing::Point(192, 65);
1783
                        this->txtR18->Name = L"txtR18";
1784
                        this->txtR18->Size = System::Drawing::Size(121, 20);
1785
                        this->txtR18->TabIndex = 37;
1786
                        this->txtR18->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1787
                        // 
1788
                        // label30
1789
                        // 
1790
                        this->label30->AutoSize = true;
1791
                        this->label30->Location = System::Drawing::Point(165, 68);
1792
                        this->label30->Name = L"label30";
1793
                        this->label30->Size = System::Drawing::Size(27, 13);
1794
                        this->label30->TabIndex = 36;
1795
                        this->label30->Text = L"R18";
1796
                        // 
1797
                        // txtR17
1798
                        // 
1799
                        this->txtR17->Location = System::Drawing::Point(192, 39);
1800
                        this->txtR17->Name = L"txtR17";
1801
                        this->txtR17->Size = System::Drawing::Size(121, 20);
1802
                        this->txtR17->TabIndex = 35;
1803
                        this->txtR17->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1804
                        // 
1805
                        // label31
1806
                        // 
1807
                        this->label31->AutoSize = true;
1808
                        this->label31->Location = System::Drawing::Point(165, 42);
1809
                        this->label31->Name = L"label31";
1810
                        this->label31->Size = System::Drawing::Size(27, 13);
1811
                        this->label31->TabIndex = 34;
1812
                        this->label31->Text = L"R17";
1813
                        // 
1814
                        // txtR16
1815
                        // 
1816
                        this->txtR16->Location = System::Drawing::Point(192, 13);
1817
                        this->txtR16->Name = L"txtR16";
1818
                        this->txtR16->Size = System::Drawing::Size(121, 20);
1819
                        this->txtR16->TabIndex = 33;
1820
                        this->txtR16->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1821
                        // 
1822
                        // label32
1823
                        // 
1824
                        this->label32->AutoSize = true;
1825
                        this->label32->Location = System::Drawing::Point(165, 16);
1826
                        this->label32->Name = L"label32";
1827
                        this->label32->Size = System::Drawing::Size(27, 13);
1828
                        this->label32->TabIndex = 32;
1829
                        this->label32->Text = L"R16";
1830
                        // 
1831
                        // txtR15
1832
                        // 
1833
                        this->txtR15->Location = System::Drawing::Point(33, 403);
1834
                        this->txtR15->Name = L"txtR15";
1835
                        this->txtR15->Size = System::Drawing::Size(121, 20);
1836
                        this->txtR15->TabIndex = 31;
1837
                        this->txtR15->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1838
                        // 
1839
                        // label9
1840
                        // 
1841
                        this->label9->AutoSize = true;
1842
                        this->label9->Location = System::Drawing::Point(6, 406);
1843
                        this->label9->Name = L"label9";
1844
                        this->label9->Size = System::Drawing::Size(27, 13);
1845
                        this->label9->TabIndex = 30;
1846
                        this->label9->Text = L"R15";
1847
                        // 
1848
                        // txtR14
1849
                        // 
1850
                        this->txtR14->Location = System::Drawing::Point(33, 377);
1851
                        this->txtR14->Name = L"txtR14";
1852
                        this->txtR14->Size = System::Drawing::Size(121, 20);
1853
                        this->txtR14->TabIndex = 29;
1854
                        this->txtR14->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1855
                        // 
1856
                        // label10
1857
                        // 
1858
                        this->label10->AutoSize = true;
1859
                        this->label10->Location = System::Drawing::Point(6, 380);
1860
                        this->label10->Name = L"label10";
1861
                        this->label10->Size = System::Drawing::Size(27, 13);
1862
                        this->label10->TabIndex = 28;
1863
                        this->label10->Text = L"R14";
1864
                        // 
1865
                        // txtR13
1866
                        // 
1867
                        this->txtR13->Location = System::Drawing::Point(33, 351);
1868
                        this->txtR13->Name = L"txtR13";
1869
                        this->txtR13->Size = System::Drawing::Size(121, 20);
1870
                        this->txtR13->TabIndex = 27;
1871
                        this->txtR13->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1872
                        // 
1873
                        // label11
1874
                        // 
1875
                        this->label11->AutoSize = true;
1876
                        this->label11->Location = System::Drawing::Point(6, 354);
1877
                        this->label11->Name = L"label11";
1878
                        this->label11->Size = System::Drawing::Size(27, 13);
1879
                        this->label11->TabIndex = 26;
1880
                        this->label11->Text = L"R13";
1881
                        // 
1882
                        // txtR12
1883
                        // 
1884
                        this->txtR12->Location = System::Drawing::Point(33, 325);
1885
                        this->txtR12->Name = L"txtR12";
1886
                        this->txtR12->Size = System::Drawing::Size(121, 20);
1887
                        this->txtR12->TabIndex = 25;
1888
                        this->txtR12->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1889
                        // 
1890
                        // label12
1891
                        // 
1892
                        this->label12->AutoSize = true;
1893
                        this->label12->Location = System::Drawing::Point(6, 328);
1894
                        this->label12->Name = L"label12";
1895
                        this->label12->Size = System::Drawing::Size(27, 13);
1896
                        this->label12->TabIndex = 24;
1897
                        this->label12->Text = L"R12";
1898
                        // 
1899
                        // txtR11
1900
                        // 
1901
                        this->txtR11->Location = System::Drawing::Point(33, 299);
1902
                        this->txtR11->Name = L"txtR11";
1903
                        this->txtR11->Size = System::Drawing::Size(121, 20);
1904
                        this->txtR11->TabIndex = 23;
1905
                        this->txtR11->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1906
                        // 
1907
                        // label13
1908
                        // 
1909
                        this->label13->AutoSize = true;
1910
                        this->label13->Location = System::Drawing::Point(6, 302);
1911
                        this->label13->Name = L"label13";
1912
                        this->label13->Size = System::Drawing::Size(27, 13);
1913
                        this->label13->TabIndex = 22;
1914
                        this->label13->Text = L"R11";
1915
                        // 
1916
                        // txtR10
1917
                        // 
1918
                        this->txtR10->Location = System::Drawing::Point(33, 273);
1919
                        this->txtR10->Name = L"txtR10";
1920
                        this->txtR10->Size = System::Drawing::Size(121, 20);
1921
                        this->txtR10->TabIndex = 21;
1922
                        this->txtR10->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1923
                        // 
1924
                        // label14
1925
                        // 
1926
                        this->label14->AutoSize = true;
1927
                        this->label14->Location = System::Drawing::Point(6, 276);
1928
                        this->label14->Name = L"label14";
1929
                        this->label14->Size = System::Drawing::Size(27, 13);
1930
                        this->label14->TabIndex = 20;
1931
                        this->label14->Text = L"R10";
1932
                        // 
1933
                        // txtR9
1934
                        // 
1935
                        this->txtR9->Location = System::Drawing::Point(33, 247);
1936
                        this->txtR9->Name = L"txtR9";
1937
                        this->txtR9->Size = System::Drawing::Size(121, 20);
1938
                        this->txtR9->TabIndex = 19;
1939
                        this->txtR9->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1940
                        // 
1941
                        // label15
1942
                        // 
1943
                        this->label15->AutoSize = true;
1944
                        this->label15->Location = System::Drawing::Point(6, 250);
1945
                        this->label15->Name = L"label15";
1946
                        this->label15->Size = System::Drawing::Size(21, 13);
1947
                        this->label15->TabIndex = 18;
1948
                        this->label15->Text = L"R9";
1949
                        // 
1950
                        // txtR8
1951
                        // 
1952
                        this->txtR8->Location = System::Drawing::Point(33, 221);
1953
                        this->txtR8->Name = L"txtR8";
1954
                        this->txtR8->Size = System::Drawing::Size(121, 20);
1955
                        this->txtR8->TabIndex = 17;
1956
                        this->txtR8->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1957
                        // 
1958
                        // label16
1959
                        // 
1960
                        this->label16->AutoSize = true;
1961
                        this->label16->Location = System::Drawing::Point(6, 224);
1962
                        this->label16->Name = L"label16";
1963
                        this->label16->Size = System::Drawing::Size(21, 13);
1964
                        this->label16->TabIndex = 16;
1965
                        this->label16->Text = L"R8";
1966
                        // 
1967
                        // txtR7
1968
                        // 
1969
                        this->txtR7->Location = System::Drawing::Point(33, 195);
1970
                        this->txtR7->Name = L"txtR7";
1971
                        this->txtR7->Size = System::Drawing::Size(121, 20);
1972
                        this->txtR7->TabIndex = 15;
1973
                        this->txtR7->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1974
                        // 
1975
                        // label5
1976
                        // 
1977
                        this->label5->AutoSize = true;
1978
                        this->label5->Location = System::Drawing::Point(6, 198);
1979
                        this->label5->Name = L"label5";
1980
                        this->label5->Size = System::Drawing::Size(21, 13);
1981
                        this->label5->TabIndex = 14;
1982
                        this->label5->Text = L"R7";
1983
                        // 
1984
                        // txtR6
1985
                        // 
1986
                        this->txtR6->Location = System::Drawing::Point(33, 169);
1987
                        this->txtR6->Name = L"txtR6";
1988
                        this->txtR6->Size = System::Drawing::Size(121, 20);
1989
                        this->txtR6->TabIndex = 13;
1990
                        this->txtR6->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
1991
                        // 
1992
                        // label6
1993
                        // 
1994
                        this->label6->AutoSize = true;
1995
                        this->label6->Location = System::Drawing::Point(6, 172);
1996
                        this->label6->Name = L"label6";
1997
                        this->label6->Size = System::Drawing::Size(21, 13);
1998
                        this->label6->TabIndex = 12;
1999
                        this->label6->Text = L"R6";
2000
                        // 
2001
                        // txtR5
2002
                        // 
2003
                        this->txtR5->Location = System::Drawing::Point(33, 143);
2004
                        this->txtR5->Name = L"txtR5";
2005
                        this->txtR5->Size = System::Drawing::Size(121, 20);
2006
                        this->txtR5->TabIndex = 11;
2007
                        this->txtR5->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2008
                        // 
2009
                        // label7
2010
                        // 
2011
                        this->label7->AutoSize = true;
2012
                        this->label7->Location = System::Drawing::Point(6, 146);
2013
                        this->label7->Name = L"label7";
2014
                        this->label7->Size = System::Drawing::Size(21, 13);
2015
                        this->label7->TabIndex = 10;
2016
                        this->label7->Text = L"R5";
2017
                        // 
2018
                        // txtR4
2019
                        // 
2020
                        this->txtR4->Location = System::Drawing::Point(33, 117);
2021
                        this->txtR4->Name = L"txtR4";
2022
                        this->txtR4->Size = System::Drawing::Size(121, 20);
2023
                        this->txtR4->TabIndex = 9;
2024
                        this->txtR4->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2025
                        // 
2026
                        // label8
2027
                        // 
2028
                        this->label8->AutoSize = true;
2029
                        this->label8->Location = System::Drawing::Point(6, 120);
2030
                        this->label8->Name = L"label8";
2031
                        this->label8->Size = System::Drawing::Size(21, 13);
2032
                        this->label8->TabIndex = 8;
2033
                        this->label8->Text = L"R4";
2034
                        // 
2035
                        // txtR3
2036
                        // 
2037
                        this->txtR3->Location = System::Drawing::Point(33, 91);
2038
                        this->txtR3->Name = L"txtR3";
2039
                        this->txtR3->Size = System::Drawing::Size(121, 20);
2040
                        this->txtR3->TabIndex = 7;
2041
                        this->txtR3->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2042
                        // 
2043
                        // label3
2044
                        // 
2045
                        this->label3->AutoSize = true;
2046
                        this->label3->Location = System::Drawing::Point(6, 94);
2047
                        this->label3->Name = L"label3";
2048
                        this->label3->Size = System::Drawing::Size(21, 13);
2049
                        this->label3->TabIndex = 6;
2050
                        this->label3->Text = L"R3";
2051
                        // 
2052
                        // txtR2
2053
                        // 
2054
                        this->txtR2->Location = System::Drawing::Point(33, 65);
2055
                        this->txtR2->Name = L"txtR2";
2056
                        this->txtR2->Size = System::Drawing::Size(121, 20);
2057
                        this->txtR2->TabIndex = 5;
2058
                        this->txtR2->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2059
                        // 
2060
                        // label4
2061
                        // 
2062
                        this->label4->AutoSize = true;
2063
                        this->label4->Location = System::Drawing::Point(6, 68);
2064
                        this->label4->Name = L"label4";
2065
                        this->label4->Size = System::Drawing::Size(21, 13);
2066
                        this->label4->TabIndex = 4;
2067
                        this->label4->Text = L"R2";
2068
                        // 
2069
                        // txtR1
2070
                        // 
2071
                        this->txtR1->Location = System::Drawing::Point(33, 39);
2072
                        this->txtR1->Name = L"txtR1";
2073
                        this->txtR1->Size = System::Drawing::Size(121, 20);
2074
                        this->txtR1->TabIndex = 3;
2075
                        this->txtR1->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2076
                        this->txtR1->TextChanged += gcnew System::EventHandler(this, &frmRegisters::textBox2_TextChanged);
2077
                        // 
2078
                        // label2
2079
                        // 
2080
                        this->label2->AutoSize = true;
2081
                        this->label2->Location = System::Drawing::Point(6, 42);
2082
                        this->label2->Name = L"label2";
2083
                        this->label2->Size = System::Drawing::Size(21, 13);
2084
                        this->label2->TabIndex = 2;
2085
                        this->label2->Text = L"R1";
2086
                        this->label2->Click += gcnew System::EventHandler(this, &frmRegisters::label2_Click);
2087
                        // 
2088
                        // txtR0
2089
                        // 
2090
                        this->txtR0->Location = System::Drawing::Point(33, 13);
2091
                        this->txtR0->Name = L"txtR0";
2092
                        this->txtR0->ReadOnly = true;
2093
                        this->txtR0->Size = System::Drawing::Size(121, 20);
2094
                        this->txtR0->TabIndex = 1;
2095
                        this->txtR0->Text = L"0";
2096
                        this->txtR0->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2097
                        // 
2098
                        // label1
2099
                        // 
2100
                        this->label1->AutoSize = true;
2101
                        this->label1->Location = System::Drawing::Point(6, 16);
2102
                        this->label1->Name = L"label1";
2103
                        this->label1->Size = System::Drawing::Size(21, 13);
2104
                        this->label1->TabIndex = 0;
2105
                        this->label1->Text = L"R0";
2106
                        // 
2107
                        // tabPage2
2108
                        // 
2109
                        this->tabPage2->Controls->Add(this->txtTick);
2110
                        this->tabPage2->Controls->Add(this->label118);
2111
                        this->tabPage2->Controls->Add(this->txtLC);
2112
                        this->tabPage2->Controls->Add(this->label117);
2113
                        this->tabPage2->Controls->Add(this->label116);
2114
                        this->tabPage2->Controls->Add(this->textBox101);
2115
                        this->tabPage2->Controls->Add(this->label115);
2116
                        this->tabPage2->Controls->Add(this->textBox100);
2117
                        this->tabPage2->Controls->Add(this->label114);
2118
                        this->tabPage2->Controls->Add(this->textBox99);
2119
                        this->tabPage2->Controls->Add(this->label113);
2120
                        this->tabPage2->Controls->Add(this->textBox98);
2121
                        this->tabPage2->Controls->Add(this->label112);
2122
                        this->tabPage2->Controls->Add(this->textBox97);
2123
                        this->tabPage2->Controls->Add(this->label111);
2124 32 robfinch
                        this->tabPage2->Controls->Add(this->txtDBAD0);
2125 30 robfinch
                        this->tabPage2->Controls->Add(this->label110);
2126
                        this->tabPage2->Controls->Add(this->label109);
2127
                        this->tabPage2->Controls->Add(this->label108);
2128
                        this->tabPage2->Controls->Add(this->label107);
2129
                        this->tabPage2->Controls->Add(this->label106);
2130
                        this->tabPage2->Controls->Add(this->label105);
2131
                        this->tabPage2->Controls->Add(this->textBox94);
2132
                        this->tabPage2->Controls->Add(this->txtCs);
2133
                        this->tabPage2->Controls->Add(this->label104);
2134 32 robfinch
                        this->tabPage2->Controls->Add(this->txtSSLmt);
2135 30 robfinch
                        this->tabPage2->Controls->Add(this->txtSs);
2136
                        this->tabPage2->Controls->Add(this->label103);
2137
                        this->tabPage2->Controls->Add(this->textBox90);
2138
                        this->tabPage2->Controls->Add(this->txtHs);
2139
                        this->tabPage2->Controls->Add(this->label102);
2140
                        this->tabPage2->Controls->Add(this->textBox88);
2141
                        this->tabPage2->Controls->Add(this->txtGs);
2142
                        this->tabPage2->Controls->Add(this->label101);
2143
                        this->tabPage2->Controls->Add(this->textBox86);
2144
                        this->tabPage2->Controls->Add(this->txtFs);
2145
                        this->tabPage2->Controls->Add(this->label100);
2146
                        this->tabPage2->Controls->Add(this->textBox84);
2147
                        this->tabPage2->Controls->Add(this->txtEs);
2148
                        this->tabPage2->Controls->Add(this->label99);
2149
                        this->tabPage2->Controls->Add(this->textBox82);
2150
                        this->tabPage2->Controls->Add(this->txtDs);
2151
                        this->tabPage2->Controls->Add(this->label98);
2152 32 robfinch
                        this->tabPage2->Controls->Add(this->txtZSLmt);
2153 30 robfinch
                        this->tabPage2->Controls->Add(this->txtZs);
2154
                        this->tabPage2->Controls->Add(this->label97);
2155
                        this->tabPage2->Controls->Add(this->txtCa15);
2156
                        this->tabPage2->Controls->Add(this->label96);
2157
                        this->tabPage2->Controls->Add(this->txtCa14);
2158
                        this->tabPage2->Controls->Add(this->label95);
2159
                        this->tabPage2->Controls->Add(this->txtCa13);
2160
                        this->tabPage2->Controls->Add(this->label94);
2161
                        this->tabPage2->Controls->Add(this->txtCa12);
2162
                        this->tabPage2->Controls->Add(this->label93);
2163
                        this->tabPage2->Controls->Add(this->txtCa11);
2164
                        this->tabPage2->Controls->Add(this->label92);
2165
                        this->tabPage2->Controls->Add(this->txtCa10);
2166
                        this->tabPage2->Controls->Add(this->label91);
2167
                        this->tabPage2->Controls->Add(this->txtCa9);
2168
                        this->tabPage2->Controls->Add(this->label90);
2169
                        this->tabPage2->Controls->Add(this->txtCa8);
2170
                        this->tabPage2->Controls->Add(this->label89);
2171
                        this->tabPage2->Controls->Add(this->txtCa7);
2172
                        this->tabPage2->Controls->Add(this->label88);
2173
                        this->tabPage2->Controls->Add(this->txtCa6);
2174
                        this->tabPage2->Controls->Add(this->label87);
2175
                        this->tabPage2->Controls->Add(this->txtCa5);
2176
                        this->tabPage2->Controls->Add(this->label86);
2177
                        this->tabPage2->Controls->Add(this->txtCa4);
2178
                        this->tabPage2->Controls->Add(this->label85);
2179
                        this->tabPage2->Controls->Add(this->txtCa3);
2180
                        this->tabPage2->Controls->Add(this->label84);
2181
                        this->tabPage2->Controls->Add(this->txtCa2);
2182
                        this->tabPage2->Controls->Add(this->label83);
2183
                        this->tabPage2->Controls->Add(this->txtCa1);
2184
                        this->tabPage2->Controls->Add(this->label82);
2185
                        this->tabPage2->Controls->Add(this->textBox16);
2186
                        this->tabPage2->Controls->Add(this->label81);
2187 32 robfinch
                        this->tabPage2->Controls->Add(this->txtP14);
2188 30 robfinch
                        this->tabPage2->Controls->Add(this->label80);
2189 32 robfinch
                        this->tabPage2->Controls->Add(this->txtP13);
2190 30 robfinch
                        this->tabPage2->Controls->Add(this->label79);
2191 32 robfinch
                        this->tabPage2->Controls->Add(this->txtP12);
2192 30 robfinch
                        this->tabPage2->Controls->Add(this->label78);
2193 32 robfinch
                        this->tabPage2->Controls->Add(this->txtP11);
2194 30 robfinch
                        this->tabPage2->Controls->Add(this->label77);
2195 32 robfinch
                        this->tabPage2->Controls->Add(this->txtP15);
2196 30 robfinch
                        this->tabPage2->Controls->Add(this->label76);
2197 32 robfinch
                        this->tabPage2->Controls->Add(this->txtP10);
2198 30 robfinch
                        this->tabPage2->Controls->Add(this->label75);
2199 32 robfinch
                        this->tabPage2->Controls->Add(this->txtP9);
2200 30 robfinch
                        this->tabPage2->Controls->Add(this->label74);
2201 32 robfinch
                        this->tabPage2->Controls->Add(this->txtP8);
2202 30 robfinch
                        this->tabPage2->Controls->Add(this->label73);
2203
                        this->tabPage2->Controls->Add(this->txtP7);
2204
                        this->tabPage2->Controls->Add(this->label72);
2205
                        this->tabPage2->Controls->Add(this->txtP6);
2206
                        this->tabPage2->Controls->Add(this->label71);
2207
                        this->tabPage2->Controls->Add(this->txtP5);
2208
                        this->tabPage2->Controls->Add(this->label70);
2209
                        this->tabPage2->Controls->Add(this->txtP4);
2210
                        this->tabPage2->Controls->Add(this->label69);
2211
                        this->tabPage2->Controls->Add(this->txtP3);
2212
                        this->tabPage2->Controls->Add(this->label68);
2213
                        this->tabPage2->Controls->Add(this->txtP2);
2214
                        this->tabPage2->Controls->Add(this->label67);
2215
                        this->tabPage2->Controls->Add(this->txtP1);
2216
                        this->tabPage2->Controls->Add(this->label66);
2217
                        this->tabPage2->Controls->Add(this->txtP0);
2218
                        this->tabPage2->Controls->Add(this->label65);
2219
                        this->tabPage2->Location = System::Drawing::Point(4, 22);
2220
                        this->tabPage2->Name = L"tabPage2";
2221
                        this->tabPage2->Padding = System::Windows::Forms::Padding(3);
2222
                        this->tabPage2->Size = System::Drawing::Size(735, 481);
2223
                        this->tabPage2->TabIndex = 1;
2224
                        this->tabPage2->Text = L"Other";
2225
                        this->tabPage2->UseVisualStyleBackColor = true;
2226
                        // 
2227
                        // txtTick
2228
                        // 
2229
                        this->txtTick->Location = System::Drawing::Point(512, 322);
2230
                        this->txtTick->Name = L"txtTick";
2231
                        this->txtTick->ReadOnly = true;
2232
                        this->txtTick->Size = System::Drawing::Size(118, 20);
2233
                        this->txtTick->TabIndex = 107;
2234
                        this->txtTick->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2235
                        // 
2236
                        // label118
2237
                        // 
2238
                        this->label118->AutoSize = true;
2239
                        this->label118->Location = System::Drawing::Point(476, 325);
2240
                        this->label118->Name = L"label118";
2241
                        this->label118->Size = System::Drawing::Size(31, 13);
2242
                        this->label118->TabIndex = 106;
2243
                        this->label118->Text = L"TICK";
2244
                        // 
2245
                        // txtLC
2246
                        // 
2247
                        this->txtLC->Location = System::Drawing::Point(512, 296);
2248
                        this->txtLC->Name = L"txtLC";
2249
                        this->txtLC->Size = System::Drawing::Size(118, 20);
2250
                        this->txtLC->TabIndex = 105;
2251
                        this->txtLC->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2252
                        // 
2253
                        // label117
2254
                        // 
2255
                        this->label117->AutoSize = true;
2256
                        this->label117->Location = System::Drawing::Point(476, 299);
2257
                        this->label117->Name = L"label117";
2258
                        this->label117->Size = System::Drawing::Size(20, 13);
2259
                        this->label117->TabIndex = 104;
2260
                        this->label117->Text = L"LC";
2261
                        // 
2262
                        // label116
2263
                        // 
2264
                        this->label116->AutoSize = true;
2265
                        this->label116->Location = System::Drawing::Point(350, 277);
2266
                        this->label116->Name = L"label116";
2267
                        this->label116->Size = System::Drawing::Size(86, 13);
2268
                        this->label116->TabIndex = 103;
2269
                        this->label116->Text = L"Debug Registers";
2270
                        // 
2271
                        // textBox101
2272
                        // 
2273
                        this->textBox101->Location = System::Drawing::Point(353, 426);
2274
                        this->textBox101->Name = L"textBox101";
2275
                        this->textBox101->Size = System::Drawing::Size(118, 20);
2276
                        this->textBox101->TabIndex = 102;
2277
                        this->textBox101->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2278
                        // 
2279
                        // label115
2280
                        // 
2281
                        this->label115->AutoSize = true;
2282
                        this->label115->Location = System::Drawing::Point(304, 429);
2283
                        this->label115->Name = L"label115";
2284
                        this->label115->Size = System::Drawing::Size(50, 13);
2285
                        this->label115->TabIndex = 101;
2286
                        this->label115->Text = L"DBSTAT";
2287
                        // 
2288
                        // textBox100
2289
                        // 
2290
                        this->textBox100->Location = System::Drawing::Point(353, 400);
2291
                        this->textBox100->Name = L"textBox100";
2292
                        this->textBox100->Size = System::Drawing::Size(118, 20);
2293
                        this->textBox100->TabIndex = 100;
2294
                        this->textBox100->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2295
                        // 
2296
                        // label114
2297
                        // 
2298
                        this->label114->AutoSize = true;
2299
                        this->label114->Location = System::Drawing::Point(304, 403);
2300
                        this->label114->Name = L"label114";
2301
                        this->label114->Size = System::Drawing::Size(50, 13);
2302
                        this->label114->TabIndex = 99;
2303
                        this->label114->Text = L"DBCTRL";
2304
                        // 
2305
                        // textBox99
2306
                        // 
2307
                        this->textBox99->Location = System::Drawing::Point(353, 374);
2308
                        this->textBox99->Name = L"textBox99";
2309
                        this->textBox99->Size = System::Drawing::Size(118, 20);
2310
                        this->textBox99->TabIndex = 98;
2311
                        this->textBox99->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2312
                        // 
2313
                        // label113
2314
                        // 
2315
                        this->label113->AutoSize = true;
2316
                        this->label113->Location = System::Drawing::Point(304, 377);
2317
                        this->label113->Name = L"label113";
2318
                        this->label113->Size = System::Drawing::Size(43, 13);
2319
                        this->label113->TabIndex = 97;
2320
                        this->label113->Text = L"DBAD3";
2321
                        // 
2322
                        // textBox98
2323
                        // 
2324
                        this->textBox98->Location = System::Drawing::Point(353, 348);
2325
                        this->textBox98->Name = L"textBox98";
2326
                        this->textBox98->Size = System::Drawing::Size(118, 20);
2327
                        this->textBox98->TabIndex = 96;
2328
                        this->textBox98->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2329
                        // 
2330
                        // label112
2331
                        // 
2332
                        this->label112->AutoSize = true;
2333
                        this->label112->Location = System::Drawing::Point(304, 351);
2334
                        this->label112->Name = L"label112";
2335
                        this->label112->Size = System::Drawing::Size(43, 13);
2336
                        this->label112->TabIndex = 95;
2337
                        this->label112->Text = L"DBAD2";
2338
                        // 
2339
                        // textBox97
2340
                        // 
2341
                        this->textBox97->Location = System::Drawing::Point(353, 322);
2342
                        this->textBox97->Name = L"textBox97";
2343
                        this->textBox97->Size = System::Drawing::Size(118, 20);
2344
                        this->textBox97->TabIndex = 94;
2345
                        this->textBox97->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2346
                        // 
2347
                        // label111
2348
                        // 
2349
                        this->label111->AutoSize = true;
2350
                        this->label111->Location = System::Drawing::Point(304, 325);
2351
                        this->label111->Name = L"label111";
2352
                        this->label111->Size = System::Drawing::Size(43, 13);
2353
                        this->label111->TabIndex = 93;
2354
                        this->label111->Text = L"DBAD1";
2355
                        // 
2356 32 robfinch
                        // txtDBAD0
2357 30 robfinch
                        // 
2358 32 robfinch
                        this->txtDBAD0->Location = System::Drawing::Point(353, 296);
2359
                        this->txtDBAD0->Name = L"txtDBAD0";
2360
                        this->txtDBAD0->Size = System::Drawing::Size(118, 20);
2361
                        this->txtDBAD0->TabIndex = 92;
2362
                        this->txtDBAD0->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2363 30 robfinch
                        // 
2364
                        // label110
2365
                        // 
2366
                        this->label110->AutoSize = true;
2367
                        this->label110->Location = System::Drawing::Point(304, 299);
2368
                        this->label110->Name = L"label110";
2369
                        this->label110->Size = System::Drawing::Size(43, 13);
2370
                        this->label110->TabIndex = 91;
2371
                        this->label110->Text = L"DBAD0";
2372
                        // 
2373
                        // label109
2374
                        // 
2375
                        this->label109->AutoSize = true;
2376
                        this->label109->Location = System::Drawing::Point(10, 14);
2377
                        this->label109->Name = L"label109";
2378
                        this->label109->Size = System::Drawing::Size(99, 13);
2379
                        this->label109->TabIndex = 90;
2380
                        this->label109->Text = L"Predicate Registers";
2381
                        // 
2382
                        // label108
2383
                        // 
2384
                        this->label108->AutoSize = true;
2385
                        this->label108->Location = System::Drawing::Point(157, 14);
2386
                        this->label108->Name = L"label108";
2387
                        this->label108->Size = System::Drawing::Size(120, 13);
2388
                        this->label108->TabIndex = 89;
2389
                        this->label108->Text = L"Code Address Registers";
2390
                        // 
2391
                        // label107
2392
                        // 
2393
                        this->label107->AutoSize = true;
2394
                        this->label107->Location = System::Drawing::Point(328, 14);
2395
                        this->label107->Name = L"label107";
2396
                        this->label107->Size = System::Drawing::Size(96, 13);
2397
                        this->label107->TabIndex = 88;
2398
                        this->label107->Text = L"Segment Registers";
2399
                        // 
2400
                        // label106
2401
                        // 
2402
                        this->label106->AutoSize = true;
2403
                        this->label106->Location = System::Drawing::Point(468, 36);
2404
                        this->label106->Name = L"label106";
2405
                        this->label106->Size = System::Drawing::Size(28, 13);
2406
                        this->label106->TabIndex = 87;
2407
                        this->label106->Text = L"Limit";
2408
                        // 
2409
                        // label105
2410
                        // 
2411
                        this->label105->AutoSize = true;
2412
                        this->label105->Location = System::Drawing::Point(328, 36);
2413
                        this->label105->Name = L"label105";
2414
                        this->label105->Size = System::Drawing::Size(31, 13);
2415
                        this->label105->TabIndex = 86;
2416
                        this->label105->Text = L"Base";
2417
                        // 
2418
                        // textBox94
2419
                        // 
2420
                        this->textBox94->Location = System::Drawing::Point(471, 244);
2421
                        this->textBox94->Name = L"textBox94";
2422
                        this->textBox94->Size = System::Drawing::Size(118, 20);
2423
                        this->textBox94->TabIndex = 85;
2424
                        this->textBox94->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2425
                        // 
2426
                        // txtCs
2427
                        // 
2428
                        this->txtCs->Location = System::Drawing::Point(331, 244);
2429
                        this->txtCs->Name = L"txtCs";
2430
                        this->txtCs->Size = System::Drawing::Size(118, 20);
2431
                        this->txtCs->TabIndex = 84;
2432
                        this->txtCs->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2433
                        // 
2434
                        // label104
2435
                        // 
2436
                        this->label104->AutoSize = true;
2437
                        this->label104->Location = System::Drawing::Point(304, 247);
2438
                        this->label104->Name = L"label104";
2439
                        this->label104->Size = System::Drawing::Size(21, 13);
2440
                        this->label104->TabIndex = 83;
2441
                        this->label104->Text = L"CS";
2442
                        // 
2443 32 robfinch
                        // txtSSLmt
2444 30 robfinch
                        // 
2445 32 robfinch
                        this->txtSSLmt->Location = System::Drawing::Point(471, 218);
2446
                        this->txtSSLmt->Name = L"txtSSLmt";
2447
                        this->txtSSLmt->Size = System::Drawing::Size(118, 20);
2448
                        this->txtSSLmt->TabIndex = 82;
2449
                        this->txtSSLmt->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2450 30 robfinch
                        // 
2451
                        // txtSs
2452
                        // 
2453
                        this->txtSs->Location = System::Drawing::Point(331, 218);
2454
                        this->txtSs->Name = L"txtSs";
2455
                        this->txtSs->Size = System::Drawing::Size(118, 20);
2456
                        this->txtSs->TabIndex = 81;
2457
                        this->txtSs->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2458
                        // 
2459
                        // label103
2460
                        // 
2461
                        this->label103->AutoSize = true;
2462
                        this->label103->Location = System::Drawing::Point(304, 221);
2463
                        this->label103->Name = L"label103";
2464
                        this->label103->Size = System::Drawing::Size(21, 13);
2465
                        this->label103->TabIndex = 80;
2466
                        this->label103->Text = L"SS";
2467
                        // 
2468
                        // textBox90
2469
                        // 
2470
                        this->textBox90->Location = System::Drawing::Point(471, 192);
2471
                        this->textBox90->Name = L"textBox90";
2472
                        this->textBox90->Size = System::Drawing::Size(118, 20);
2473
                        this->textBox90->TabIndex = 79;
2474
                        this->textBox90->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2475
                        // 
2476
                        // txtHs
2477
                        // 
2478
                        this->txtHs->Location = System::Drawing::Point(331, 192);
2479
                        this->txtHs->Name = L"txtHs";
2480
                        this->txtHs->Size = System::Drawing::Size(118, 20);
2481
                        this->txtHs->TabIndex = 78;
2482
                        this->txtHs->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2483
                        // 
2484
                        // label102
2485
                        // 
2486
                        this->label102->AutoSize = true;
2487
                        this->label102->Location = System::Drawing::Point(304, 195);
2488
                        this->label102->Name = L"label102";
2489
                        this->label102->Size = System::Drawing::Size(22, 13);
2490
                        this->label102->TabIndex = 77;
2491
                        this->label102->Text = L"HS";
2492
                        // 
2493
                        // textBox88
2494
                        // 
2495
                        this->textBox88->Location = System::Drawing::Point(471, 166);
2496
                        this->textBox88->Name = L"textBox88";
2497
                        this->textBox88->Size = System::Drawing::Size(118, 20);
2498
                        this->textBox88->TabIndex = 76;
2499
                        this->textBox88->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2500
                        // 
2501
                        // txtGs
2502
                        // 
2503
                        this->txtGs->Location = System::Drawing::Point(331, 166);
2504
                        this->txtGs->Name = L"txtGs";
2505
                        this->txtGs->Size = System::Drawing::Size(118, 20);
2506
                        this->txtGs->TabIndex = 75;
2507
                        this->txtGs->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2508
                        // 
2509
                        // label101
2510
                        // 
2511
                        this->label101->AutoSize = true;
2512
                        this->label101->Location = System::Drawing::Point(304, 169);
2513
                        this->label101->Name = L"label101";
2514
                        this->label101->Size = System::Drawing::Size(22, 13);
2515
                        this->label101->TabIndex = 74;
2516
                        this->label101->Text = L"GS";
2517
                        // 
2518
                        // textBox86
2519
                        // 
2520
                        this->textBox86->Location = System::Drawing::Point(471, 140);
2521
                        this->textBox86->Name = L"textBox86";
2522
                        this->textBox86->Size = System::Drawing::Size(118, 20);
2523
                        this->textBox86->TabIndex = 73;
2524
                        this->textBox86->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2525
                        // 
2526
                        // txtFs
2527
                        // 
2528
                        this->txtFs->Location = System::Drawing::Point(331, 140);
2529
                        this->txtFs->Name = L"txtFs";
2530
                        this->txtFs->Size = System::Drawing::Size(118, 20);
2531
                        this->txtFs->TabIndex = 72;
2532
                        this->txtFs->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2533
                        // 
2534
                        // label100
2535
                        // 
2536
                        this->label100->AutoSize = true;
2537
                        this->label100->Location = System::Drawing::Point(304, 143);
2538
                        this->label100->Name = L"label100";
2539
                        this->label100->Size = System::Drawing::Size(20, 13);
2540
                        this->label100->TabIndex = 71;
2541
                        this->label100->Text = L"FS";
2542
                        // 
2543
                        // textBox84
2544
                        // 
2545
                        this->textBox84->Location = System::Drawing::Point(471, 114);
2546
                        this->textBox84->Name = L"textBox84";
2547
                        this->textBox84->Size = System::Drawing::Size(118, 20);
2548
                        this->textBox84->TabIndex = 70;
2549
                        this->textBox84->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2550
                        // 
2551
                        // txtEs
2552
                        // 
2553
                        this->txtEs->Location = System::Drawing::Point(331, 114);
2554
                        this->txtEs->Name = L"txtEs";
2555
                        this->txtEs->Size = System::Drawing::Size(118, 20);
2556
                        this->txtEs->TabIndex = 69;
2557
                        this->txtEs->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2558
                        // 
2559
                        // label99
2560
                        // 
2561
                        this->label99->AutoSize = true;
2562
                        this->label99->Location = System::Drawing::Point(304, 117);
2563
                        this->label99->Name = L"label99";
2564
                        this->label99->Size = System::Drawing::Size(21, 13);
2565
                        this->label99->TabIndex = 68;
2566
                        this->label99->Text = L"ES";
2567
                        // 
2568
                        // textBox82
2569
                        // 
2570
                        this->textBox82->Location = System::Drawing::Point(471, 88);
2571
                        this->textBox82->Name = L"textBox82";
2572
                        this->textBox82->Size = System::Drawing::Size(118, 20);
2573
                        this->textBox82->TabIndex = 67;
2574
                        this->textBox82->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2575
                        // 
2576
                        // txtDs
2577
                        // 
2578
                        this->txtDs->Location = System::Drawing::Point(331, 88);
2579
                        this->txtDs->Name = L"txtDs";
2580
                        this->txtDs->Size = System::Drawing::Size(118, 20);
2581
                        this->txtDs->TabIndex = 66;
2582
                        this->txtDs->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2583
                        // 
2584
                        // label98
2585
                        // 
2586
                        this->label98->AutoSize = true;
2587
                        this->label98->Location = System::Drawing::Point(304, 91);
2588
                        this->label98->Name = L"label98";
2589
                        this->label98->Size = System::Drawing::Size(22, 13);
2590
                        this->label98->TabIndex = 65;
2591
                        this->label98->Text = L"DS";
2592
                        // 
2593 32 robfinch
                        // txtZSLmt
2594 30 robfinch
                        // 
2595 32 robfinch
                        this->txtZSLmt->Location = System::Drawing::Point(471, 62);
2596
                        this->txtZSLmt->Name = L"txtZSLmt";
2597
                        this->txtZSLmt->Size = System::Drawing::Size(118, 20);
2598
                        this->txtZSLmt->TabIndex = 64;
2599
                        this->txtZSLmt->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2600 30 robfinch
                        // 
2601
                        // txtZs
2602
                        // 
2603
                        this->txtZs->Location = System::Drawing::Point(331, 62);
2604
                        this->txtZs->Name = L"txtZs";
2605
                        this->txtZs->Size = System::Drawing::Size(118, 20);
2606
                        this->txtZs->TabIndex = 63;
2607
                        this->txtZs->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2608
                        // 
2609
                        // label97
2610
                        // 
2611
                        this->label97->AutoSize = true;
2612
                        this->label97->Location = System::Drawing::Point(304, 65);
2613
                        this->label97->Name = L"label97";
2614
                        this->label97->Size = System::Drawing::Size(21, 13);
2615
                        this->label97->TabIndex = 62;
2616
                        this->label97->Text = L"ZS";
2617
                        // 
2618
                        // txtCa15
2619
                        // 
2620
                        this->txtCa15->Location = System::Drawing::Point(160, 426);
2621
                        this->txtCa15->Name = L"txtCa15";
2622
                        this->txtCa15->ReadOnly = true;
2623
                        this->txtCa15->Size = System::Drawing::Size(118, 20);
2624
                        this->txtCa15->TabIndex = 61;
2625
                        this->txtCa15->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2626
                        // 
2627
                        // label96
2628
                        // 
2629
                        this->label96->AutoSize = true;
2630
                        this->label96->Location = System::Drawing::Point(109, 429);
2631
                        this->label96->Name = L"label96";
2632
                        this->label96->Size = System::Drawing::Size(45, 13);
2633
                        this->label96->TabIndex = 60;
2634
                        this->label96->Text = L"C15/PC";
2635
                        // 
2636
                        // txtCa14
2637
                        // 
2638
                        this->txtCa14->Location = System::Drawing::Point(160, 400);
2639
                        this->txtCa14->Name = L"txtCa14";
2640
                        this->txtCa14->Size = System::Drawing::Size(118, 20);
2641
                        this->txtCa14->TabIndex = 59;
2642
                        this->txtCa14->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2643
                        // 
2644
                        // label95
2645
                        // 
2646
                        this->label95->AutoSize = true;
2647
                        this->label95->Location = System::Drawing::Point(109, 403);
2648
                        this->label95->Name = L"label95";
2649
                        this->label95->Size = System::Drawing::Size(48, 13);
2650
                        this->label95->TabIndex = 58;
2651
                        this->label95->Text = L"C14/IPC";
2652
                        // 
2653
                        // txtCa13
2654
                        // 
2655
                        this->txtCa13->Location = System::Drawing::Point(160, 374);
2656
                        this->txtCa13->Name = L"txtCa13";
2657
                        this->txtCa13->Size = System::Drawing::Size(118, 20);
2658
                        this->txtCa13->TabIndex = 57;
2659
                        this->txtCa13->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2660
                        // 
2661
                        // label94
2662
                        // 
2663
                        this->label94->AutoSize = true;
2664
                        this->label94->Location = System::Drawing::Point(109, 377);
2665
                        this->label94->Name = L"label94";
2666
                        this->label94->Size = System::Drawing::Size(52, 13);
2667
                        this->label94->TabIndex = 56;
2668
                        this->label94->Text = L"C13/EPC";
2669
                        // 
2670
                        // txtCa12
2671
                        // 
2672
                        this->txtCa12->Location = System::Drawing::Point(160, 348);
2673
                        this->txtCa12->Name = L"txtCa12";
2674
                        this->txtCa12->Size = System::Drawing::Size(118, 20);
2675
                        this->txtCa12->TabIndex = 55;
2676
                        this->txtCa12->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2677
                        // 
2678
                        // label93
2679
                        // 
2680
                        this->label93->AutoSize = true;
2681
                        this->label93->Location = System::Drawing::Point(109, 351);
2682
                        this->label93->Name = L"label93";
2683
                        this->label93->Size = System::Drawing::Size(26, 13);
2684
                        this->label93->TabIndex = 54;
2685
                        this->label93->Text = L"C12";
2686
                        // 
2687
                        // txtCa11
2688
                        // 
2689
                        this->txtCa11->Location = System::Drawing::Point(160, 322);
2690
                        this->txtCa11->Name = L"txtCa11";
2691
                        this->txtCa11->Size = System::Drawing::Size(118, 20);
2692
                        this->txtCa11->TabIndex = 53;
2693
                        this->txtCa11->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2694
                        // 
2695
                        // label92
2696
                        // 
2697
                        this->label92->AutoSize = true;
2698
                        this->label92->Location = System::Drawing::Point(109, 325);
2699
                        this->label92->Name = L"label92";
2700
                        this->label92->Size = System::Drawing::Size(53, 13);
2701
                        this->label92->TabIndex = 52;
2702
                        this->label92->Text = L"C11/DPC";
2703
                        // 
2704
                        // txtCa10
2705
                        // 
2706
                        this->txtCa10->Location = System::Drawing::Point(160, 296);
2707
                        this->txtCa10->Name = L"txtCa10";
2708
                        this->txtCa10->Size = System::Drawing::Size(118, 20);
2709
                        this->txtCa10->TabIndex = 51;
2710
                        this->txtCa10->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2711
                        // 
2712
                        // label91
2713
                        // 
2714
                        this->label91->AutoSize = true;
2715
                        this->label91->Location = System::Drawing::Point(109, 299);
2716
                        this->label91->Name = L"label91";
2717
                        this->label91->Size = System::Drawing::Size(26, 13);
2718
                        this->label91->TabIndex = 50;
2719
                        this->label91->Text = L"C10";
2720
                        // 
2721
                        // txtCa9
2722
                        // 
2723
                        this->txtCa9->Location = System::Drawing::Point(160, 270);
2724
                        this->txtCa9->Name = L"txtCa9";
2725
                        this->txtCa9->Size = System::Drawing::Size(118, 20);
2726
                        this->txtCa9->TabIndex = 49;
2727
                        this->txtCa9->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2728
                        // 
2729
                        // label90
2730
                        // 
2731
                        this->label90->AutoSize = true;
2732
                        this->label90->Location = System::Drawing::Point(109, 273);
2733
                        this->label90->Name = L"label90";
2734
                        this->label90->Size = System::Drawing::Size(20, 13);
2735
                        this->label90->TabIndex = 48;
2736
                        this->label90->Text = L"C9";
2737
                        // 
2738
                        // txtCa8
2739
                        // 
2740
                        this->txtCa8->Location = System::Drawing::Point(160, 244);
2741
                        this->txtCa8->Name = L"txtCa8";
2742
                        this->txtCa8->Size = System::Drawing::Size(118, 20);
2743
                        this->txtCa8->TabIndex = 47;
2744
                        this->txtCa8->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2745
                        // 
2746
                        // label89
2747
                        // 
2748
                        this->label89->AutoSize = true;
2749
                        this->label89->Location = System::Drawing::Point(109, 247);
2750
                        this->label89->Name = L"label89";
2751
                        this->label89->Size = System::Drawing::Size(20, 13);
2752
                        this->label89->TabIndex = 46;
2753
                        this->label89->Text = L"C8";
2754
                        // 
2755
                        // txtCa7
2756
                        // 
2757
                        this->txtCa7->Location = System::Drawing::Point(160, 218);
2758
                        this->txtCa7->Name = L"txtCa7";
2759
                        this->txtCa7->Size = System::Drawing::Size(118, 20);
2760
                        this->txtCa7->TabIndex = 45;
2761
                        this->txtCa7->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2762
                        // 
2763
                        // label88
2764
                        // 
2765
                        this->label88->AutoSize = true;
2766
                        this->label88->Location = System::Drawing::Point(109, 221);
2767
                        this->label88->Name = L"label88";
2768
                        this->label88->Size = System::Drawing::Size(20, 13);
2769
                        this->label88->TabIndex = 44;
2770
                        this->label88->Text = L"C7";
2771
                        // 
2772
                        // txtCa6
2773
                        // 
2774
                        this->txtCa6->Location = System::Drawing::Point(160, 192);
2775
                        this->txtCa6->Name = L"txtCa6";
2776
                        this->txtCa6->Size = System::Drawing::Size(118, 20);
2777
                        this->txtCa6->TabIndex = 43;
2778
                        this->txtCa6->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2779
                        // 
2780
                        // label87
2781
                        // 
2782
                        this->label87->AutoSize = true;
2783
                        this->label87->Location = System::Drawing::Point(109, 195);
2784
                        this->label87->Name = L"label87";
2785
                        this->label87->Size = System::Drawing::Size(20, 13);
2786
                        this->label87->TabIndex = 42;
2787
                        this->label87->Text = L"C6";
2788
                        // 
2789
                        // txtCa5
2790
                        // 
2791
                        this->txtCa5->Location = System::Drawing::Point(160, 166);
2792
                        this->txtCa5->Name = L"txtCa5";
2793
                        this->txtCa5->Size = System::Drawing::Size(118, 20);
2794
                        this->txtCa5->TabIndex = 41;
2795
                        this->txtCa5->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2796
                        // 
2797
                        // label86
2798
                        // 
2799
                        this->label86->AutoSize = true;
2800
                        this->label86->Location = System::Drawing::Point(109, 169);
2801
                        this->label86->Name = L"label86";
2802
                        this->label86->Size = System::Drawing::Size(20, 13);
2803
                        this->label86->TabIndex = 40;
2804
                        this->label86->Text = L"C5";
2805
                        // 
2806
                        // txtCa4
2807
                        // 
2808
                        this->txtCa4->Location = System::Drawing::Point(160, 140);
2809
                        this->txtCa4->Name = L"txtCa4";
2810
                        this->txtCa4->Size = System::Drawing::Size(118, 20);
2811
                        this->txtCa4->TabIndex = 39;
2812
                        this->txtCa4->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2813
                        // 
2814
                        // label85
2815
                        // 
2816
                        this->label85->AutoSize = true;
2817
                        this->label85->Location = System::Drawing::Point(109, 143);
2818
                        this->label85->Name = L"label85";
2819
                        this->label85->Size = System::Drawing::Size(20, 13);
2820
                        this->label85->TabIndex = 38;
2821
                        this->label85->Text = L"C4";
2822
                        // 
2823
                        // txtCa3
2824
                        // 
2825
                        this->txtCa3->Location = System::Drawing::Point(160, 114);
2826
                        this->txtCa3->Name = L"txtCa3";
2827
                        this->txtCa3->Size = System::Drawing::Size(118, 20);
2828
                        this->txtCa3->TabIndex = 37;
2829
                        this->txtCa3->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2830
                        // 
2831
                        // label84
2832
                        // 
2833
                        this->label84->AutoSize = true;
2834
                        this->label84->Location = System::Drawing::Point(109, 117);
2835
                        this->label84->Name = L"label84";
2836
                        this->label84->Size = System::Drawing::Size(20, 13);
2837
                        this->label84->TabIndex = 36;
2838
                        this->label84->Text = L"C3";
2839
                        // 
2840
                        // txtCa2
2841
                        // 
2842
                        this->txtCa2->Location = System::Drawing::Point(160, 88);
2843
                        this->txtCa2->Name = L"txtCa2";
2844
                        this->txtCa2->Size = System::Drawing::Size(118, 20);
2845
                        this->txtCa2->TabIndex = 35;
2846
                        this->txtCa2->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2847
                        // 
2848
                        // label83
2849
                        // 
2850
                        this->label83->AutoSize = true;
2851
                        this->label83->Location = System::Drawing::Point(109, 91);
2852
                        this->label83->Name = L"label83";
2853
                        this->label83->Size = System::Drawing::Size(20, 13);
2854
                        this->label83->TabIndex = 34;
2855
                        this->label83->Text = L"C2";
2856
                        // 
2857
                        // txtCa1
2858
                        // 
2859
                        this->txtCa1->Location = System::Drawing::Point(160, 62);
2860
                        this->txtCa1->Name = L"txtCa1";
2861
                        this->txtCa1->Size = System::Drawing::Size(118, 20);
2862
                        this->txtCa1->TabIndex = 33;
2863
                        this->txtCa1->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2864
                        // 
2865
                        // label82
2866
                        // 
2867
                        this->label82->AutoSize = true;
2868
                        this->label82->Location = System::Drawing::Point(109, 65);
2869
                        this->label82->Name = L"label82";
2870
                        this->label82->Size = System::Drawing::Size(20, 13);
2871
                        this->label82->TabIndex = 32;
2872
                        this->label82->Text = L"C1";
2873
                        // 
2874
                        // textBox16
2875
                        // 
2876
                        this->textBox16->Location = System::Drawing::Point(160, 36);
2877
                        this->textBox16->Name = L"textBox16";
2878
                        this->textBox16->ReadOnly = true;
2879
                        this->textBox16->Size = System::Drawing::Size(118, 20);
2880
                        this->textBox16->TabIndex = 31;
2881
                        this->textBox16->Text = L"0";
2882
                        this->textBox16->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2883
                        // 
2884
                        // label81
2885
                        // 
2886
                        this->label81->AutoSize = true;
2887
                        this->label81->Location = System::Drawing::Point(109, 39);
2888
                        this->label81->Name = L"label81";
2889
                        this->label81->Size = System::Drawing::Size(20, 13);
2890
                        this->label81->TabIndex = 30;
2891
                        this->label81->Text = L"C0";
2892
                        // 
2893 32 robfinch
                        // txtP14
2894 30 robfinch
                        // 
2895 32 robfinch
                        this->txtP14->Location = System::Drawing::Point(36, 400);
2896
                        this->txtP14->Name = L"txtP14";
2897
                        this->txtP14->Size = System::Drawing::Size(54, 20);
2898
                        this->txtP14->TabIndex = 29;
2899
                        this->txtP14->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2900 30 robfinch
                        // 
2901
                        // label80
2902
                        // 
2903
                        this->label80->AutoSize = true;
2904
                        this->label80->Location = System::Drawing::Point(10, 403);
2905
                        this->label80->Name = L"label80";
2906
                        this->label80->Size = System::Drawing::Size(26, 13);
2907
                        this->label80->TabIndex = 28;
2908
                        this->label80->Text = L"P14";
2909
                        // 
2910 32 robfinch
                        // txtP13
2911 30 robfinch
                        // 
2912 32 robfinch
                        this->txtP13->Location = System::Drawing::Point(36, 374);
2913
                        this->txtP13->Name = L"txtP13";
2914
                        this->txtP13->Size = System::Drawing::Size(54, 20);
2915
                        this->txtP13->TabIndex = 27;
2916
                        this->txtP13->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2917 30 robfinch
                        // 
2918
                        // label79
2919
                        // 
2920
                        this->label79->AutoSize = true;
2921
                        this->label79->Location = System::Drawing::Point(10, 377);
2922
                        this->label79->Name = L"label79";
2923
                        this->label79->Size = System::Drawing::Size(26, 13);
2924
                        this->label79->TabIndex = 26;
2925
                        this->label79->Text = L"P13";
2926
                        // 
2927 32 robfinch
                        // txtP12
2928 30 robfinch
                        // 
2929 32 robfinch
                        this->txtP12->Location = System::Drawing::Point(36, 348);
2930
                        this->txtP12->Name = L"txtP12";
2931
                        this->txtP12->Size = System::Drawing::Size(54, 20);
2932
                        this->txtP12->TabIndex = 25;
2933
                        this->txtP12->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2934 30 robfinch
                        // 
2935
                        // label78
2936
                        // 
2937
                        this->label78->AutoSize = true;
2938
                        this->label78->Location = System::Drawing::Point(10, 351);
2939
                        this->label78->Name = L"label78";
2940
                        this->label78->Size = System::Drawing::Size(26, 13);
2941
                        this->label78->TabIndex = 24;
2942
                        this->label78->Text = L"P12";
2943
                        // 
2944 32 robfinch
                        // txtP11
2945 30 robfinch
                        // 
2946 32 robfinch
                        this->txtP11->Location = System::Drawing::Point(36, 322);
2947
                        this->txtP11->Name = L"txtP11";
2948
                        this->txtP11->Size = System::Drawing::Size(54, 20);
2949
                        this->txtP11->TabIndex = 23;
2950
                        this->txtP11->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2951 30 robfinch
                        // 
2952
                        // label77
2953
                        // 
2954
                        this->label77->AutoSize = true;
2955
                        this->label77->Location = System::Drawing::Point(10, 325);
2956
                        this->label77->Name = L"label77";
2957
                        this->label77->Size = System::Drawing::Size(26, 13);
2958
                        this->label77->TabIndex = 22;
2959
                        this->label77->Text = L"P11";
2960
                        // 
2961 32 robfinch
                        // txtP15
2962 30 robfinch
                        // 
2963 32 robfinch
                        this->txtP15->Location = System::Drawing::Point(36, 426);
2964
                        this->txtP15->Name = L"txtP15";
2965
                        this->txtP15->Size = System::Drawing::Size(54, 20);
2966
                        this->txtP15->TabIndex = 23;
2967
                        this->txtP15->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2968 30 robfinch
                        // 
2969
                        // label76
2970
                        // 
2971
                        this->label76->AutoSize = true;
2972
                        this->label76->Location = System::Drawing::Point(10, 429);
2973
                        this->label76->Name = L"label76";
2974
                        this->label76->Size = System::Drawing::Size(26, 13);
2975
                        this->label76->TabIndex = 22;
2976
                        this->label76->Text = L"P15";
2977
                        // 
2978 32 robfinch
                        // txtP10
2979 30 robfinch
                        // 
2980 32 robfinch
                        this->txtP10->Location = System::Drawing::Point(36, 296);
2981
                        this->txtP10->Name = L"txtP10";
2982
                        this->txtP10->Size = System::Drawing::Size(54, 20);
2983
                        this->txtP10->TabIndex = 21;
2984
                        this->txtP10->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
2985 30 robfinch
                        // 
2986
                        // label75
2987
                        // 
2988
                        this->label75->AutoSize = true;
2989
                        this->label75->Location = System::Drawing::Point(10, 299);
2990
                        this->label75->Name = L"label75";
2991
                        this->label75->Size = System::Drawing::Size(26, 13);
2992
                        this->label75->TabIndex = 20;
2993
                        this->label75->Text = L"P10";
2994
                        // 
2995 32 robfinch
                        // txtP9
2996 30 robfinch
                        // 
2997 32 robfinch
                        this->txtP9->Location = System::Drawing::Point(36, 270);
2998
                        this->txtP9->Name = L"txtP9";
2999
                        this->txtP9->Size = System::Drawing::Size(54, 20);
3000
                        this->txtP9->TabIndex = 19;
3001
                        this->txtP9->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
3002 30 robfinch
                        // 
3003
                        // label74
3004
                        // 
3005
                        this->label74->AutoSize = true;
3006
                        this->label74->Location = System::Drawing::Point(10, 273);
3007
                        this->label74->Name = L"label74";
3008
                        this->label74->Size = System::Drawing::Size(20, 13);
3009
                        this->label74->TabIndex = 18;
3010
                        this->label74->Text = L"P9";
3011
                        // 
3012 32 robfinch
                        // txtP8
3013 30 robfinch
                        // 
3014 32 robfinch
                        this->txtP8->Location = System::Drawing::Point(36, 244);
3015
                        this->txtP8->Name = L"txtP8";
3016
                        this->txtP8->Size = System::Drawing::Size(54, 20);
3017
                        this->txtP8->TabIndex = 17;
3018
                        this->txtP8->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
3019 30 robfinch
                        // 
3020
                        // label73
3021
                        // 
3022
                        this->label73->AutoSize = true;
3023
                        this->label73->Location = System::Drawing::Point(10, 247);
3024
                        this->label73->Name = L"label73";
3025
                        this->label73->Size = System::Drawing::Size(20, 13);
3026
                        this->label73->TabIndex = 16;
3027
                        this->label73->Text = L"P8";
3028
                        // 
3029
                        // txtP7
3030
                        // 
3031
                        this->txtP7->Location = System::Drawing::Point(36, 218);
3032
                        this->txtP7->Name = L"txtP7";
3033
                        this->txtP7->Size = System::Drawing::Size(54, 20);
3034
                        this->txtP7->TabIndex = 15;
3035
                        this->txtP7->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
3036
                        // 
3037
                        // label72
3038
                        // 
3039
                        this->label72->AutoSize = true;
3040
                        this->label72->Location = System::Drawing::Point(10, 221);
3041
                        this->label72->Name = L"label72";
3042
                        this->label72->Size = System::Drawing::Size(20, 13);
3043
                        this->label72->TabIndex = 14;
3044
                        this->label72->Text = L"P7";
3045
                        // 
3046
                        // txtP6
3047
                        // 
3048
                        this->txtP6->Location = System::Drawing::Point(36, 192);
3049
                        this->txtP6->Name = L"txtP6";
3050
                        this->txtP6->Size = System::Drawing::Size(54, 20);
3051
                        this->txtP6->TabIndex = 13;
3052
                        this->txtP6->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
3053
                        // 
3054
                        // label71
3055
                        // 
3056
                        this->label71->AutoSize = true;
3057
                        this->label71->Location = System::Drawing::Point(10, 195);
3058
                        this->label71->Name = L"label71";
3059
                        this->label71->Size = System::Drawing::Size(20, 13);
3060
                        this->label71->TabIndex = 12;
3061
                        this->label71->Text = L"P6";
3062
                        // 
3063
                        // txtP5
3064
                        // 
3065
                        this->txtP5->Location = System::Drawing::Point(36, 166);
3066
                        this->txtP5->Name = L"txtP5";
3067
                        this->txtP5->Size = System::Drawing::Size(54, 20);
3068
                        this->txtP5->TabIndex = 11;
3069
                        this->txtP5->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
3070
                        // 
3071
                        // label70
3072
                        // 
3073
                        this->label70->AutoSize = true;
3074
                        this->label70->Location = System::Drawing::Point(10, 169);
3075
                        this->label70->Name = L"label70";
3076
                        this->label70->Size = System::Drawing::Size(20, 13);
3077
                        this->label70->TabIndex = 10;
3078
                        this->label70->Text = L"P5";
3079
                        // 
3080
                        // txtP4
3081
                        // 
3082
                        this->txtP4->Location = System::Drawing::Point(36, 140);
3083
                        this->txtP4->Name = L"txtP4";
3084
                        this->txtP4->Size = System::Drawing::Size(54, 20);
3085
                        this->txtP4->TabIndex = 9;
3086
                        this->txtP4->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
3087
                        // 
3088
                        // label69
3089
                        // 
3090
                        this->label69->AutoSize = true;
3091
                        this->label69->Location = System::Drawing::Point(10, 143);
3092
                        this->label69->Name = L"label69";
3093
                        this->label69->Size = System::Drawing::Size(20, 13);
3094
                        this->label69->TabIndex = 8;
3095
                        this->label69->Text = L"P4";
3096
                        // 
3097
                        // txtP3
3098
                        // 
3099
                        this->txtP3->Location = System::Drawing::Point(36, 114);
3100
                        this->txtP3->Name = L"txtP3";
3101
                        this->txtP3->Size = System::Drawing::Size(54, 20);
3102
                        this->txtP3->TabIndex = 7;
3103
                        this->txtP3->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
3104
                        // 
3105
                        // label68
3106
                        // 
3107
                        this->label68->AutoSize = true;
3108
                        this->label68->Location = System::Drawing::Point(10, 117);
3109
                        this->label68->Name = L"label68";
3110
                        this->label68->Size = System::Drawing::Size(20, 13);
3111
                        this->label68->TabIndex = 6;
3112
                        this->label68->Text = L"P3";
3113
                        // 
3114
                        // txtP2
3115
                        // 
3116
                        this->txtP2->Location = System::Drawing::Point(36, 88);
3117
                        this->txtP2->Name = L"txtP2";
3118
                        this->txtP2->Size = System::Drawing::Size(54, 20);
3119
                        this->txtP2->TabIndex = 5;
3120
                        this->txtP2->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
3121
                        // 
3122
                        // label67
3123
                        // 
3124
                        this->label67->AutoSize = true;
3125
                        this->label67->Location = System::Drawing::Point(10, 91);
3126
                        this->label67->Name = L"label67";
3127
                        this->label67->Size = System::Drawing::Size(20, 13);
3128
                        this->label67->TabIndex = 4;
3129
                        this->label67->Text = L"P2";
3130
                        // 
3131
                        // txtP1
3132
                        // 
3133
                        this->txtP1->Location = System::Drawing::Point(36, 62);
3134
                        this->txtP1->Name = L"txtP1";
3135
                        this->txtP1->Size = System::Drawing::Size(54, 20);
3136
                        this->txtP1->TabIndex = 3;
3137
                        this->txtP1->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
3138
                        // 
3139
                        // label66
3140
                        // 
3141
                        this->label66->AutoSize = true;
3142
                        this->label66->Location = System::Drawing::Point(10, 65);
3143
                        this->label66->Name = L"label66";
3144
                        this->label66->Size = System::Drawing::Size(20, 13);
3145
                        this->label66->TabIndex = 2;
3146
                        this->label66->Text = L"P1";
3147
                        // 
3148
                        // txtP0
3149
                        // 
3150
                        this->txtP0->Location = System::Drawing::Point(36, 36);
3151
                        this->txtP0->Name = L"txtP0";
3152
                        this->txtP0->Size = System::Drawing::Size(54, 20);
3153
                        this->txtP0->TabIndex = 1;
3154
                        this->txtP0->TextAlign = System::Windows::Forms::HorizontalAlignment::Right;
3155
                        // 
3156
                        // label65
3157
                        // 
3158
                        this->label65->AutoSize = true;
3159
                        this->label65->Location = System::Drawing::Point(10, 39);
3160
                        this->label65->Name = L"label65";
3161
                        this->label65->Size = System::Drawing::Size(20, 13);
3162
                        this->label65->TabIndex = 0;
3163
                        this->label65->Text = L"P0";
3164
                        // 
3165
                        // frmRegisters
3166
                        // 
3167
                        this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
3168
                        this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
3169
                        this->ClientSize = System::Drawing::Size(767, 525);
3170
                        this->Controls->Add(this->tabControl1);
3171
                        this->Name = L"frmRegisters";
3172
                        this->Text = L"Thor - Registers";
3173
                        this->tabControl1->ResumeLayout(false);
3174
                        this->tabPage1->ResumeLayout(false);
3175
                        this->tabPage1->PerformLayout();
3176
                        this->tabPage2->ResumeLayout(false);
3177
                        this->tabPage2->PerformLayout();
3178
                        this->ResumeLayout(false);
3179
 
3180
                }
3181
#pragma endregion
3182
        private: System::Void label2_Click(System::Object^  sender, System::EventArgs^  e) {
3183
                         }
3184
private: System::Void textBox2_TextChanged(System::Object^  sender, System::EventArgs^  e) {
3185
                         }
3186
};
3187
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.