-
Notifications
You must be signed in to change notification settings - Fork 8
/
UDebugger.fmx
621 lines (621 loc) · 19.9 KB
/
UDebugger.fmx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
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
609
610
611
612
613
614
615
616
617
618
619
620
621
object frmDebug: TfrmDebug
Left = 0
Top = 0
Caption = 'Z80 Registers'
ClientHeight = 528
ClientWidth = 333
FormFactor.Width = 320
FormFactor.Height = 480
FormFactor.Devices = [Desktop]
OnCreate = FormCreate
DesignerMasterStyle = 0
object lblCaptionAF: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 8.000000000000000000
Position.Y = 16.000000000000000000
Size.Width = 40.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'AF'
TabOrder = 23
end
object lblAF: TLabel
Position.X = 56.000000000000000000
Position.Y = 16.000000000000000000
Size.Width = 33.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '---'
TabOrder = 24
end
object lblBCCaption: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 8.000000000000000000
Position.Y = 40.000000000000000000
Size.Width = 40.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'AF'
TabOrder = 15
end
object lblBC: TLabel
Position.X = 56.000000000000000000
Position.Y = 40.000000000000000000
Size.Width = 33.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '---'
TabOrder = 16
end
object lblDEDescription: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 8.000000000000000000
Position.Y = 64.000000000000000000
Size.Width = 40.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'DE'
TabOrder = 17
end
object lblDE: TLabel
Position.X = 56.000000000000000000
Position.Y = 64.000000000000000000
Size.Width = 33.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '---'
TabOrder = 18
end
object lblHLDescription: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 8.000000000000000000
Position.Y = 88.000000000000000000
Size.Width = 40.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'HL'
TabOrder = 4
end
object lblHL: TLabel
Position.X = 56.000000000000000000
Position.Y = 88.000000000000000000
Size.Width = 33.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '---'
TabOrder = 5
end
object lblIXDescription: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 8.000000000000000000
Position.Y = 112.000000000000000000
Size.Width = 40.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'IX'
TabOrder = 21
end
object lblIX: TLabel
Position.X = 56.000000000000000000
Position.Y = 112.000000000000000000
Size.Width = 33.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '---'
TabOrder = 22
end
object lblIYDescripton: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 8.000000000000000000
Position.Y = 136.000000000000000000
Size.Width = 40.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'IY'
TabOrder = 10
end
object lblIY: TLabel
Position.X = 56.000000000000000000
Position.Y = 136.000000000000000000
Size.Width = 33.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '---'
TabOrder = 11
end
object lblSPDescription: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 8.000000000000000000
Position.Y = 160.000000000000000000
Size.Width = 40.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'SP'
TabOrder = 12
end
object lblSP: TLabel
Position.X = 56.000000000000000000
Position.Y = 160.000000000000000000
Size.Width = 33.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '---'
TabOrder = 14
end
object lblPCDescription: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 8.000000000000000000
Position.Y = 184.000000000000000000
Size.Width = 40.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'PC'
TabOrder = 2
end
object lblPC: TLabel
Position.X = 56.000000000000000000
Position.Y = 184.000000000000000000
Size.Width = 33.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '---'
TabOrder = 3
end
object lblIRDescription: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 8.000000000000000000
Position.Y = 208.000000000000000000
Size.Width = 40.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'IR'
TabOrder = 19
end
object lblIR: TLabel
Position.X = 56.000000000000000000
Position.Y = 208.000000000000000000
Size.Width = 33.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '---'
TabOrder = 20
end
object lblIMMDescription: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 8.000000000000000000
Position.Y = 232.000000000000000000
Size.Width = 40.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'IMM'
TabOrder = 6
end
object lblIMM: TLabel
Position.X = 56.000000000000000000
Position.Y = 232.000000000000000000
Size.Width = 33.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '---'
TabOrder = 7
end
object lblIFF1Description: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 8.000000000000000000
Position.Y = 256.000000000000000000
Size.Width = 40.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'IFF1'
TabOrder = 8
end
object lblIFF1: TLabel
Position.X = 56.000000000000000000
Position.Y = 256.000000000000000000
Size.Width = 33.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '---'
TabOrder = 9
end
object lblIFF2Description: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 8.000000000000000000
Position.Y = 280.000000000000000000
Size.Width = 40.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'IFF2'
TabOrder = 0
end
object lblIFF2: TLabel
Position.X = 56.000000000000000000
Position.Y = 280.000000000000000000
Size.Width = 33.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '---'
TabOrder = 1
end
object gbFlags: TGroupBox
Position.X = 88.000000000000000000
Position.Y = 8.000000000000000000
Size.Width = 153.000000000000000000
Size.Height = 73.000000000000000000
Size.PlatformDefault = False
Text = 'FLAGS'
TabOrder = 25
object lblSFlag: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 16.000000000000000000
Position.Y = 16.000000000000000000
Size.Width = 25.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = 'S'
TabOrder = 7
end
object lblZFlag: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 48.000000000000000000
Position.Y = 16.000000000000000000
Size.Width = 25.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = 'Z'
TabOrder = 4
end
object lblHFlag: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 80.000000000000000000
Position.Y = 16.000000000000000000
Size.Width = 25.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = 'H'
TabOrder = 5
end
object lblPFlag: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 112.000000000000000000
Position.Y = 16.000000000000000000
Size.Width = 25.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = 'P/V'
TabOrder = 1
end
object lblNFlag: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 16.000000000000000000
Position.Y = 40.000000000000000000
Size.Width = 25.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = 'N'
TabOrder = 6
end
object lblCFlag: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 48.000000000000000000
Position.Y = 40.000000000000000000
Size.Width = 25.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = 'C'
TabOrder = 2
end
object lblUD5Flag: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 80.000000000000000000
Position.Y = 40.000000000000000000
Size.Width = 25.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = 'UD5'
TabOrder = 3
end
object lblUD3Flag: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 112.000000000000000000
Position.Y = 40.000000000000000000
Size.Width = 25.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = 'UD3'
TabOrder = 0
end
end
object btnAddWatch: TButton
Position.X = 89.000000000000000000
Position.Y = 88.000000000000000000
Size.Width = 22.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'stepperbuttonleft'
TabOrder = 29
Text = 'Add'
OnClick = btnAddWatchClick
end
object btnDelWatch: TButton
Position.X = 111.000000000000000000
Position.Y = 88.000000000000000000
Size.Width = 22.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'stepperbuttonright'
TabOrder = 27
Text = 'Delete'
end
object lbWatches: TListBox
Position.X = 88.000000000000000000
Position.Y = 112.000000000000000000
Size.Width = 233.000000000000000000
Size.Height = 161.000000000000000000
Size.PlatformDefault = False
TabOrder = 30
DisableFocusEffect = True
DefaultItemStyles.ItemStyle = ''
DefaultItemStyles.GroupHeaderStyle = ''
DefaultItemStyles.GroupFooterStyle = ''
Viewport.Width = 229.000000000000000000
Viewport.Height = 157.000000000000000000
end
object btnPause: TButton
Position.X = 88.000000000000000000
Position.Y = 280.000000000000000000
Size.Width = 22.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'pausetoolbutton'
TabOrder = 33
Text = 'Pause'
end
object btnPlay: TButton
Position.X = 112.000000000000000000
Position.Y = 280.000000000000000000
Size.Width = 22.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'playtoolbutton'
TabOrder = 32
Text = 'Play'
end
object btnStep: TButton
Position.X = 136.000000000000000000
Position.Y = 280.000000000000000000
Size.Width = 22.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'forwardtoolbutton'
TabOrder = 31
Text = 'Play'
end
object gbNextInstr: TGroupBox
Position.X = 8.000000000000000000
Position.Y = 304.000000000000000000
Size.Width = 313.000000000000000000
Size.Height = 57.000000000000000000
Size.PlatformDefault = False
Text = 'Instruction'
TabOrder = 35
object lblMemory: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 16.000000000000000000
Position.Y = 24.000000000000000000
Size.Width = 81.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claRed
Text = '00 00 00 00'
TabOrder = 0
end
object lblInstruction: TLabel
Position.X = 97.000000000000000000
Position.Y = 24.000000000000000000
Size.Width = 208.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '???????????'
TabOrder = 1
end
end
object gbMemory: TGroupBox
Position.X = 8.000000000000000000
Position.Y = 368.000000000000000000
Size.Width = 313.000000000000000000
Size.Height = 105.000000000000000000
Size.PlatformDefault = False
Text = 'Memory'
TabOrder = 34
object lblRAM0Description: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 16.000000000000000000
Position.Y = 24.000000000000000000
Size.Width = 49.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'RAM0'
TabOrder = 9
end
object lblRAM0: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 72.000000000000000000
Position.Y = 24.000000000000000000
Size.Width = 30.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = '00'
TabOrder = 11
end
object lblRAM1: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 72.000000000000000000
Position.Y = 48.000000000000000000
Size.Width = 30.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = '00'
TabOrder = 10
end
object lblRAM1Description: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 16.000000000000000000
Position.Y = 48.000000000000000000
Size.Width = 49.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'RAM1'
TabOrder = 4
end
object lblRAM2: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 72.000000000000000000
Position.Y = 72.000000000000000000
Size.Width = 30.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = '00'
TabOrder = 8
end
object lblRAM2Description: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 16.000000000000000000
Position.Y = 72.000000000000000000
Size.Width = 49.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'RAM2'
TabOrder = 2
end
object lblRamVideo: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 192.000000000000000000
Position.Y = 72.000000000000000000
Size.Width = 30.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = '00'
TabOrder = 7
end
object lblRamVideoDescription: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 136.000000000000000000
Position.Y = 72.000000000000000000
Size.Width = 49.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'VIDEO'
TabOrder = 0
end
object lblRAM4Description: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 136.000000000000000000
Position.Y = 48.000000000000000000
Size.Width = 49.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'RAM4'
TabOrder = 1
end
object lblRAM4: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 192.000000000000000000
Position.Y = 48.000000000000000000
Size.Width = 30.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = '00'
TabOrder = 5
end
object lblRAM3: TLabel
StyledSettings = [Family, Size, Style]
Position.X = 192.000000000000000000
Position.Y = 24.000000000000000000
Size.Width = 30.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.FontColor = claBlue
Text = '00'
TabOrder = 6
end
object lblRAM3Description: TLabel
StyledSettings = [Family, Size, FontColor]
Position.X = 136.000000000000000000
Position.Y = 24.000000000000000000
Size.Width = 49.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.StyleExt = {00070000000000000004000000}
Text = 'RAM3'
TabOrder = 3
end
end
object cbBreak: TComboBox
Position.X = 144.000000000000000000
Position.Y = 486.000000000000000000
Size.Width = 177.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 36
end
object btnAddBreak: TButton
Position.X = 88.000000000000000000
Position.Y = 486.000000000000000000
Size.Width = 22.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'additembutton'
TabOrder = 28
Text = 'Add'
end
object btnDelBreak: TButton
Position.X = 112.000000000000000000
Position.Y = 486.000000000000000000
Size.Width = 22.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'deleteitembutton'
TabOrder = 26
Text = 'Delete'
end
object cbBreakPoint: TCheckBox
Position.X = 8.000000000000000000
Position.Y = 487.000000000000000000
Size.Width = 73.000000000000000000
Size.Height = 19.000000000000000000
Size.PlatformDefault = False
TabOrder = 13
Text = 'Break'
end
end