-
Notifications
You must be signed in to change notification settings - Fork 0
/
unit1.lfm
95 lines (95 loc) · 1.7 KB
/
unit1.lfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
object DumpForm: TDumpForm
Left = 31
Height = 416
Top = 121
Width = 574
Caption = 'Dump printer memory'
ClientHeight = 416
ClientWidth = 574
LCLVersion = '2.2.6.0'
object Memo1: TMemo
Left = 0
Height = 356
Top = 56
Width = 574
Anchors = [akTop, akLeft, akRight, akBottom]
Font.Name = 'Courier New'
ParentFont = False
ScrollBars = ssAutoBoth
TabOrder = 0
WordWrap = False
end
object btnDump: TButton
Left = 184
Height = 25
Top = 24
Width = 80
Caption = 'Dump'
OnClick = btnDumpClick
TabOrder = 1
end
object DumpAddress: TEdit
Left = 8
Height = 29
Top = 24
Width = 80
TabOrder = 2
Text = '$0'
end
object DumpLen: TEdit
Left = 96
Height = 29
Top = 24
Width = 80
TabOrder = 3
Text = '1200'
end
object btnDumpRam: TButton
Left = 336
Height = 25
Top = 24
Width = 75
Caption = 'Dump ram'
OnClick = btnDumpRamClick
TabOrder = 4
end
object btnDumpSpi: TButton
Left = 416
Height = 25
Top = 24
Width = 75
Caption = 'Dump spi'
OnClick = btnDumpSpiClick
TabOrder = 5
end
object btnDumpOtp: TButton
Left = 496
Height = 25
Top = 24
Width = 75
Caption = 'Dump otp'
OnClick = btnDumpOtpClick
TabOrder = 6
end
object Label1: TLabel
Left = 8
Height = 15
Top = 9
Width = 48
Caption = 'Address'
ParentColor = False
end
object Label2: TLabel
Left = 96
Height = 15
Top = 8
Width = 39
Caption = 'Length'
ParentColor = False
end
object SaveDialog1: TSaveDialog
Options = [ofOverwritePrompt, ofEnableSizing, ofViewDetail]
Left = 296
Top = 48
end
end