source: branches/virtualcpu/UFormMain.lfm

Last change on this file was 87, checked in by chronos, 9 years ago

Another experimental virtual CPU implementation.

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