📄 bmp2asm.dpr
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -