source: branches/CpuSingleSize/Forms/FormCpu.lfm

Last change on this file was 238, checked in by chronos, 16 months ago
  • Modified: Removed U prefix from unit names.
  • Fixed: Memory leaks.
File size: 1.6 KB
Line 
1object FormCpu: TFormCpu
2 Left = 522
3 Height = 775
4 Top = 244
5 Width = 1482
6 Caption = 'CPU'
7 ClientHeight = 775
8 ClientWidth = 1482
9 DesignTimePPI = 144
10 OnClose = FormClose
11 OnShow = FormShow
12 LCLVersion = '2.0.10.0'
13 object ListViewMemory: TListView
14 Left = 215
15 Height = 665
16 Top = 48
17 Width = 1216
18 Columns = <
19 item
20 Caption = 'Address'
21 Width = 100
22 end
23 item
24 Caption = 'Data'
25 Width = 1101
26 end>
27 Font.Name = 'Liberation Mono'
28 OwnerData = True
29 ParentFont = False
30 ReadOnly = True
31 TabOrder = 0
32 ViewStyle = vsReport
33 OnData = ListViewMemoryData
34 end
35 object ListViewRegs: TListView
36 Left = 16
37 Height = 665
38 Top = 48
39 Width = 184
40 Columns = <
41 item
42 Caption = 'Name'
43 end
44 item
45 Caption = 'Value'
46 Width = 119
47 end>
48 Font.Name = 'Liberation Mono'
49 OwnerData = True
50 ParentFont = False
51 ReadOnly = True
52 TabOrder = 1
53 ViewStyle = vsReport
54 OnData = ListViewRegsData
55 end
56 object Label1: TLabel
57 Left = 15
58 Height = 24
59 Top = 12
60 Width = 83
61 Caption = 'Registers:'
62 ParentColor = False
63 end
64 object Label2: TLabel
65 Left = 215
66 Height = 24
67 Top = 15
68 Width = 75
69 Caption = 'Memory:'
70 ParentColor = False
71 end
72 object LabelTicks: TLabel
73 Left = 27
74 Height = 24
75 Top = 728
76 Width = 48
77 Caption = 'Ticks:'
78 ParentColor = False
79 end
80 object Timer1: TTimer
81 Enabled = False
82 Interval = 200
83 OnTimer = Timer1Timer
84 Left = 554
85 Top = 277
86 end
87end
Note: See TracBrowser for help on using the repository browser.