📄 ppas.bat
字号:
@echo off
SET THEFILE=project1
echo Assembling %THEFILE%
D:\lazarus\fpc\2.2.0\bin\i386-win32\arm-wince-as.exe -o project1.o project1.s
if errorlevel 1 goto asmend
Del project1.s
SET THEFILE=project1.exe
echo Linking %THEFILE%
D:\lazarus\fpc\2.2.0\bin\i386-win32\arm-wince-ld.exe -m armpe --gc-sections --subsystem wince --entry=_WinMainCRTStartup -o project1.exe link.res
if errorlevel 1 goto linkend
arm-wince-postw32.exe --subsystem gui --input project1.exe --stack 262144
if errorlevel 1 goto linkend
goto end
:asmend
echo An error occured while assembling %THEFILE%
goto end
:linkend
echo An error occured while linking %THEFILE%
:end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -