Changeset 238 for branches/CpuSingleSize/CpuSingleSize.lpr
- Timestamp:
- Jul 15, 2023, 12:51:15 AM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CpuSingleSize/CpuSingleSize.lpr
r223 r238 8 8 {$ENDIF}{$ENDIF} 9 9 Interfaces, // this includes the LCL widgetset 10 Forms, UFormMain, UCpu, UAssembler, UInstructions, UFormScreen, UMachine,11 UFormCpu, UFormConsole, UFormAssembler, UCore, UFormDisassembler,12 UDisassembler, UMemory, UFormMessages, UMessages, SysUtils, UFormHelp,13 UParser, UFormDevices, UFormStorage, UProject;10 Forms, FormMain, Cpu, Assembler, Instructions, FormScreen, Machine, 11 FormCpu, FormConsole, FormAssembler, Core, FormDisassembler, 12 Disassembler, Memory, FormMessages, Message, SysUtils, FormHelp, 13 Parser, FormDevices, FormStorage, Project; 14 14 15 15 {$R *.res} … … 29 29 Application.Scaled := True; 30 30 Application.Initialize; 31 Application.CreateForm(TCore, Core); 32 Application.CreateForm(TFormMain, FormMain); 33 Application.CreateForm(TFormCpu, FormCpu); 34 Application.CreateForm(TFormAssembler, FormAssembler); 35 Application.CreateForm(TFormDisassembler, FormDisassembler); 36 Application.CreateForm(TFormMessages, FormMessages); 37 Application.CreateForm(TFormHelp, FormHelp); 38 Application.CreateForm(TFormDevices, FormDevices); 31 Application.CreateForm(TCore, Core.Core); 39 32 Application.Run; 40 33 end.
Note:
See TracChangeset
for help on using the changeset viewer.