object Form1: TForm1
  Left = 299
  Top = 166
  BorderIcons = [biSystemMenu, biMinimize]
  BorderStyle = bsSingle
  Caption = 'flasher'
  ClientHeight = 273
  ClientWidth = 433
  Font.Charset = RUSSIAN_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Courier New'
  Font.Style = []
  Menu = MainMenu1
  Position = poDefault
  OnActivate = FormPaint
  OnCloseQuery = FormCloseQuery
  OnCreate = FormCreate
  OnKeyDown = FormKeyDown
  OnPaint = FormPaint
  PixelsPerInch = 96
  TextHeight = 14
  object Label1: TLabel
    Left = 0
    Top = 232
    Width = 49
    Height = 17
    AutoSize = False
    Caption = 'buffer'
    Layout = tlBottom
  end
  object Label2: TLabel
    Left = 112
    Top = 232
    Width = 41
    Height = 17
    AutoSize = False
    Caption = 'flash'
    Layout = tlBottom
  end
  object Label3: TLabel
    Left = 216
    Top = 232
    Width = 33
    Height = 17
    AutoSize = False
    Caption = 'size'
    Layout = tlBottom
  end
  object Bevel1: TBevel
    Left = 0
    Top = 0
    Width = 433
    Height = 226
  end
  object StatusBar1: TStatusBar
    Left = 0
    Top = 254
    Width = 433
    Height = 19
    Panels = <>
    SimplePanel = False
    SizeGrip = False
  end
  object BufAddrPr: TEdit
    Left = 48
    Top = 232
    Width = 57
    Height = 22
    TabStop = False
    MaxLength = 5
    TabOrder = 1
    OnKeyPress = BufAddrPrKeyPress
  end
  object FlashAddrPr: TEdit
    Left = 152
    Top = 232
    Width = 57
    Height = 22
    TabStop = False
    MaxLength = 5
    TabOrder = 2
    OnKeyPress = FlashAddrPrKeyPress
  end
  object BlockSizePr: TEdit
    Left = 248
    Top = 232
    Width = 57
    Height = 22
    TabStop = False
    MaxLength = 5
    TabOrder = 3
    OnKeyPress = BlockSizePrKeyPress
  end
  object MainMenu1: TMainMenu
    AutoHotKeys = maManual
    object File1: TMenuItem
      Caption = 'file'
      object Open: TMenuItem
        Caption = 'open'
        ShortCut = 16463
        OnClick = OpenClick
      end
      object Save: TMenuItem
        Caption = 'save'
        ShortCut = 16467
        OnClick = SaveClick
      end
      object SaveAs: TMenuItem
        Caption = 'save as'
        OnClick = SaveAsClick
      end
    end
    object MDevice: TMenuItem
      Caption = 'device'
      object MDeviceType: TMenuItem
        Caption = 'type'
        object Mrt4a: TMenuItem
          Caption = 'rt4a'
          OnClick = MainMenuClick
        end
        object Mre3: TMenuItem
          Caption = 're3'
          OnClick = MainMenuClick
        end
      end
      object MReadDevice: TMenuItem
        Caption = 'read'
        ShortCut = 16466
        OnClick = MainMenuClick
      end
      object MWriteDevice: TMenuItem
        Caption = 'write'
        ShortCut = 16471
        OnClick = MainMenuClick
      end
      object MVerifyDevice: TMenuItem
        Caption = 'verify'
        ShortCut = 16470
        OnClick = MainMenuClick
      end
      object MEraseDevice: TMenuItem
        Caption = 'erase'
        ShortCut = 16453
        OnClick = MainMenuClick
      end
      object MLockDevice: TMenuItem
        Caption = 'lock'
        OnClick = MainMenuClick
      end
      object MUnlockDevice: TMenuItem
        Caption = 'unlock'
        OnClick = MainMenuClick
      end
    end
    object Options: TMenuItem
      Caption = 'options'
      object MPort: TMenuItem
        Caption = 'port'
      end
      object Mspeed: TMenuItem
        Caption = 'speed'
        object N19200: TMenuItem
          Caption = '19200'
          OnClick = MainMenuClick
        end
        object N57600: TMenuItem
          Caption = '57600'
          OnClick = MainMenuClick
        end
        object N115200: TMenuItem
          Caption = '115200'
          OnClick = MainMenuClick
        end
      end
      object Mcharset: TMenuItem
        Caption = 'charset'
        object Mansi: TMenuItem
          Caption = 'ansi'
          OnClick = MainMenuClick
        end
        object Moem: TMenuItem
          Caption = 'oem'
          OnClick = MainMenuClick
        end
        object Mkoi: TMenuItem
          Caption = 'koi8-r'
          OnClick = MainMenuClick
        end
      end
      object Mgoto: TMenuItem
        Caption = 'goto'
        ShortCut = 16455
        OnClick = MgotoClick
      end
    end
    object MInfo: TMenuItem
      Caption = 'info'
      object MAbout: TMenuItem
        Caption = 'about'
        OnClick = MainMenuClick
      end
    end
  end
  object SaveDialog1: TSaveDialog
    DefaultExt = 'rom'
    Filter = 'rom images|*.rom|all files|*.*'
    Options = [ofOverwritePrompt, ofHideReadOnly]
    Left = 64
  end
  object OpenDialog1: TOpenDialog
    DefaultExt = 'rom'
    Filter = 'rom images|*.rom|all files|*.*'
    Left = 32
  end
end