forked from cnpack/cnvcl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit1.dfm
More file actions
156 lines (156 loc) · 2.95 KB
/
Unit1.dfm
File metadata and controls
156 lines (156 loc) · 2.95 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
object Form1: TForm1
Left = 192
Top = 107
Width = 696
Height = 480
Caption = 'SystemDebugControl Test'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object lbl1: TLabel
Left = 152
Top = 32
Width = 47
Height = 13
Caption = 'Address $'
end
object lblLen: TLabel
Left = 312
Top = 32
Width = 36
Height = 13
Caption = 'Length:'
end
object btnKey: TButton
Left = 24
Top = 24
Width = 75
Height = 25
Caption = 'Key'
TabOrder = 0
OnClick = btnKeyClick
end
object Memo1: TMemo
Left = 24
Top = 80
Width = 73
Height = 353
TabOrder = 1
end
object btnKernelMem: TButton
Left = 464
Top = 28
Width = 89
Height = 25
Caption = 'Read Kernel'
TabOrder = 2
OnClick = btnKernelMemClick
end
object edtLen: TEdit
Left = 352
Top = 28
Width = 73
Height = 21
TabOrder = 3
Text = '100'
end
object UpDown1: TUpDown
Left = 425
Top = 28
Width = 15
Height = 21
Associate = edtLen
Min = 0
Position = 100
TabOrder = 4
Wrap = False
end
object cbbMem: TComboBox
Left = 216
Top = 28
Width = 81
Height = 21
ItemHeight = 13
TabOrder = 5
Text = '804d1000'
Items.Strings = (
'80100000'
'80400000'
'804d1000'
'804e0000')
end
object mmoMem: TMemo
Left = 152
Top = 88
Width = 505
Height = 89
TabOrder = 6
end
object btnReadPhy: TButton
Left = 568
Top = 28
Width = 89
Height = 25
Caption = 'Read Physical'
TabOrder = 7
OnClick = btnReadPhyClick
end
object btnChangekernelBase: TButton
Left = 152
Top = 200
Width = 505
Height = 25
Caption = 'Change the '#39'MZ'#39' at Kernel Base to '#39'CH'#39
TabOrder = 8
OnClick = btnChangekernelBaseClick
end
object btnBeep: TButton
Left = 152
Top = 248
Width = 75
Height = 25
Caption = 'Start Beep'
TabOrder = 9
OnClick = btnBeepClick
end
object btnStopBeep: TButton
Left = 256
Top = 248
Width = 75
Height = 25
Caption = 'Stop Beep'
TabOrder = 10
OnClick = btnStopBeepClick
end
object btnCmos: TButton
Left = 584
Top = 248
Width = 75
Height = 25
Caption = 'Read CMOS'
TabOrder = 11
OnClick = btnCmosClick
end
object btnReadFirstHardDiskSn: TButton
Left = 416
Top = 248
Width = 147
Height = 25
Caption = 'Read First HardDisk SN'
TabOrder = 12
OnClick = btnReadFirstHardDiskSnClick
end
object Timer1: TTimer
Enabled = False
OnTimer = Timer1Timer
Left = 48
Top = 104
end
end