mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-01 00:43:42 +02:00
72 lines
1.3 KiB
Plaintext
72 lines
1.3 KiB
Plaintext
object Form1: TForm1
|
|
Left = 435
|
|
Height = 224
|
|
Top = 232
|
|
Width = 400
|
|
HorzScrollBar.Page = 399
|
|
VertScrollBar.Page = 223
|
|
Caption = 'AsmTest'
|
|
ClientHeight = 224
|
|
ClientWidth = 400
|
|
LCLVersion = '1.1'
|
|
object Label1: TLabel
|
|
Left = 8
|
|
Height = 15
|
|
Top = 8
|
|
Width = 218
|
|
Caption = 'Enter hex values separated by spaces here'
|
|
ParentColor = False
|
|
end
|
|
object Label2: TLabel
|
|
Left = 8
|
|
Height = 15
|
|
Top = 173
|
|
Width = 38
|
|
Anchors = [akLeft, akBottom]
|
|
Caption = 'Output'
|
|
ParentColor = False
|
|
end
|
|
object txtCode: TMemo
|
|
Left = 8
|
|
Height = 135
|
|
Top = 32
|
|
Width = 384
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
|
Lines.Strings = (
|
|
'90'
|
|
'41'
|
|
'E8 12345678'
|
|
'C3'
|
|
'AA'
|
|
'0F0F A4 B6 12345678 A6'
|
|
'65 0F 01 92 12345678'
|
|
'43 DB 9C B1 55667788'
|
|
''
|
|
)
|
|
ScrollBars = ssVertical
|
|
TabOrder = 0
|
|
end
|
|
object txtOutput: TEdit
|
|
Left = 8
|
|
Height = 23
|
|
Top = 191
|
|
Width = 384
|
|
Anchors = [akLeft, akRight, akBottom]
|
|
ReadOnly = True
|
|
TabOrder = 1
|
|
end
|
|
object chk64Bit: TCheckBox
|
|
Left = 304
|
|
Height = 19
|
|
Top = 9
|
|
Width = 49
|
|
Caption = '64 bit'
|
|
TabOrder = 2
|
|
end
|
|
object Timer1: TTimer
|
|
Interval = 250
|
|
OnTimer = Timer1Timer
|
|
top = 184
|
|
end
|
|
end
|