source: branches/virtcpu fixed int/UFormMain.lfm

Last change on this file was 215, checked in by chronos, 4 years ago
  • Added: TMachine class which contains CPU and peripherals.
  • Added: Execute TCpu inside background thread.
File size: 1.9 KB
Line 
1object Form1: TForm1
2 Left = 385
3 Height = 914
4 Top = 208
5 Width = 1543
6 Caption = 'Form1'
7 ClientHeight = 914
8 ClientWidth = 1543
9 DesignTimePPI = 144
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnKeyPress = FormKeyPress
13 OnShow = FormShow
14 LCLVersion = '2.0.10.0'
15 object ListViewMemory: TListView
16 Left = 618
17 Height = 824
18 Top = 48
19 Width = 880
20 Columns = <
21 item
22 Caption = 'Address'
23 Width = 120
24 end
25 item
26 Width = 745
27 end>
28 Font.Name = 'Liberation Mono'
29 OwnerData = True
30 ParentFont = False
31 TabOrder = 0
32 ViewStyle = vsReport
33 OnData = ListViewMemoryData
34 end
35 object ListViewRegisters: TListView
36 Left = 374
37 Height = 824
38 Top = 49
39 Width = 230
40 Columns = <
41 item
42 Caption = 'Register'
43 Width = 96
44 end
45 item
46 Width = 120
47 end>
48 Font.Name = 'Liberation Mono'
49 OwnerData = True
50 ParentFont = False
51 TabOrder = 1
52 ViewStyle = vsReport
53 OnData = ListViewRegistersData
54 end
55 object Memo1: TMemo
56 Left = 19
57 Height = 637
58 Top = 29
59 Width = 341
60 OnKeyPress = Memo1KeyPress
61 ParentFont = False
62 ReadOnly = True
63 TabOrder = 2
64 end
65 object ButtonStart: TButton
66 Left = 248
67 Height = 37
68 Top = 682
69 Width = 113
70 Caption = 'Start'
71 OnClick = ButtonStartClick
72 ParentFont = False
73 TabOrder = 3
74 end
75 object ButtonStop: TButton
76 Left = 106
77 Height = 37
78 Top = 682
79 Width = 113
80 Caption = 'Stop'
81 OnClick = ButtonStopClick
82 ParentFont = False
83 TabOrder = 4
84 end
85 object LabelTicks: TLabel
86 Left = 19
87 Height = 24
88 Top = 734
89 Width = 48
90 Caption = 'Ticks:'
91 ParentColor = False
92 ParentFont = False
93 end
94 object Timer1: TTimer
95 Interval = 500
96 OnTimer = Timer1Timer
97 Left = 271
98 Top = 810
99 end
100end
Note: See TracBrowser for help on using the repository browser.