source: branches/virtualcpu4/Forms/UFormDisassembler.lfm

Last change on this file was 184, checked in by chronos, 5 years ago
  • Added: Basic assembler window.
File size: 1.0 KB
Line 
1object FormDisassembler: TFormDisassembler
2 Left = 587
3 Height = 576
4 Top = 248
5 Width = 601
6 Caption = 'Disassembler'
7 ClientHeight = 576
8 ClientWidth = 601
9 DesignTimePPI = 120
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnShow = FormShow
13 LCLVersion = '2.0.2.0'
14 object ListView1: TListView
15 Left = 7
16 Height = 521
17 Top = 7
18 Width = 587
19 Align = alCustom
20 Anchors = [akTop, akLeft, akRight, akBottom]
21 BorderSpacing.Around = 7
22 Columns = <
23 item
24 Caption = 'Address'
25 Width = 83
26 end
27 item
28 Caption = 'Opcode'
29 Width = 125
30 end
31 item
32 Caption = 'Assembly'
33 Width = 367
34 end>
35 OwnerData = True
36 ParentFont = False
37 ReadOnly = True
38 RowSelect = True
39 TabOrder = 0
40 ViewStyle = vsReport
41 OnData = ListView1Data
42 end
43 object ButtonReload: TButton
44 Left = 7
45 Height = 31
46 Top = 536
47 Width = 94
48 Anchors = [akLeft, akBottom]
49 Caption = 'Reload'
50 OnClick = ButtonReloadClick
51 TabOrder = 1
52 end
53end
Note: See TracBrowser for help on using the repository browser.