Changeset 145 for trunk/LazFuck.lpr
- Timestamp:
- Jun 5, 2023, 6:44:57 PM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LazFuck.lpr
r143 r145 9 9 {$ENDIF} 10 10 Interfaces, // this includes the LCL widgetset 11 Forms, UTarget, UFormCPU, UFormMain, UFormOutput, UFormInput, UFormMemory,12 UFormMessages, UFormSourceCode, UFormTargetCode, UCore, Common,13 SysUtils, UBFCodeTools;11 Forms, Target, FormCPU, FormMain, FormOutput, FormInput, FormMemory, 12 FormMessages, FormSourceCode, FormTargetCode, Core, Common, 13 SysUtils, BFCodeTools; 14 14 15 15 {$R *.res} … … 31 31 RequireDerivedFormResource := True; 32 32 Application.Initialize; 33 Application.CreateForm(TCore, Core); 34 Application.CreateForm(TFormMain, FormMain); 35 Application.CreateForm(TFormCPU, FormCPU); 36 Application.CreateForm(TFormOutput, FormOutput); 37 Application.CreateForm(TFormInput, FormInput); 38 Application.CreateForm(TFormMemory, FormMemory); 39 Application.CreateForm(TFormMessages, FormMessages); 40 Application.CreateForm(TFormSourceCode, FormSourceCode); 41 Application.CreateForm(TFormTargetCode, FormTargetCode); 33 Application.CreateForm(TCore, Core.Core); 42 34 Application.Run; 43 35 end.
Note:
See TracChangeset
for help on using the changeset viewer.