File: asmtestunit.lfm

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (71 lines) | stat: -rw-r--r-- 1,319 bytes parent folder | download | duplicates (7)
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
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