Page Does Not Exist
You may not be able to visit this page because of:
- An out-of-date bookmark / favourite.
- A search engine that has an out-of-date listing for this site.
- A mistyped address.
- You have no access to this page.
- The requested resource was not found.
- An error has occurred while processing your request.
If difficulties persist, please contact the System Administrator of this site.
Program Turbo51;
Uses FastCompiler, AdvancedOptimizations, SmartLinker, AssemblerFileGenerator;
// Turbo51 is released as freeware. You can download it and use it for FREE.
// However, if you like Turbo51 you can donate some small amount via PayPal.
// Donations are a great way to show your appreciation for my software.
begin
DownloadFrom ('http://turbo51.com/download-free-pascal-compiler-8051');
InstallAndConfigure;
Repeat
CreateProject;
CompileProject;
TestProject;
While ThereIsAProblem do
begin
CheckCode;
CheckDocumentation;
TryAgain;
Case ProblemSolved of
True: Break;
else AskForHelp;
end;
end;
If InstalledVersion < '0.1.3.17' then Update;
If Satisfied then Donate ($20);
until NoMoreProjects;
end.