source: branches/virtualcpu2/UFormMain.lfm

Last change on this file was 154, checked in by chronos, 6 years ago
  • Added: More opcodes with handlers.
File size: 1.2 KB
Line 
1object Form1: TForm1
2 Left = 131
3 Height = 732
4 Top = 173
5 Width = 1504
6 Caption = 'Form1'
7 ClientHeight = 732
8 ClientWidth = 1504
9 DesignTimePPI = 120
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnShow = FormShow
13 LCLVersion = '1.8.2.0'
14 object ButtonRun: TButton
15 Left = 32
16 Height = 25
17 Top = 16
18 Width = 75
19 Caption = 'Run'
20 OnClick = ButtonRunClick
21 TabOrder = 0
22 end
23 object ListViewMemory: TListView
24 Left = 16
25 Height = 664
26 Top = 48
27 Width = 792
28 Columns = <
29 item
30 Caption = 'Addr'
31 Width = 100
32 end
33 item
34 Caption = 'Data'
35 Width = 675
36 end>
37 OwnerData = True
38 ReadOnly = True
39 RowSelect = True
40 TabOrder = 1
41 ViewStyle = vsReport
42 OnData = ListViewMemoryData
43 end
44 object ListViewRegisters: TListView
45 Left = 832
46 Height = 536
47 Top = 16
48 Width = 256
49 Columns = <
50 item
51 Caption = 'Index'
52 Width = 100
53 end
54 item
55 Caption = 'Data'
56 Width = 323
57 end>
58 OwnerData = True
59 ReadOnly = True
60 RowSelect = True
61 TabOrder = 2
62 ViewStyle = vsReport
63 OnData = ListViewRegistersData
64 end
65end
Note: See TracBrowser for help on using the repository browser.