Ignore:
Timestamp:
Jul 15, 2023, 12:51:15 AM (16 months ago)
Author:
chronos
Message:
  • Modified: Removed U prefix from unit names.
  • Fixed: Memory leaks.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CpuSingleSize/CpuSingleSize.lpr

    r223 r238  
    88  {$ENDIF}{$ENDIF}
    99  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;
    1414
    1515{$R *.res}
     
    2929  Application.Scaled := True;
    3030  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);
    3932  Application.Run;
    4033end.
Note: See TracChangeset for help on using the changeset viewer.