bmp2asm.dpr

来自「LCD bmp to PIC assembler」· DPR 代码 · 共 23 行

DPR
23
字号
program BMP2ASM;
{
BMP2ASM.EXE - 9/99, John Gerthoffer, American Auto-Matrix
This program takes a BMP file and scans it into 8-bit high rows.
Each row is converted into a text file format for inclusion into
assembly language programs.
The intended target is the PIC microprocessor.
Written to support the Smart Stat project.
}

uses
  Forms,
  ImageWin in 'Imagewin.pas' {ImageForm};

{$R *.RES}

begin
  Application.CreateForm(TImageForm, ImageForm);
  Application.Title := 'BMP to ASM Convertor';
  Application.CreateForm(TImageForm, ImageForm);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?