2016-08-23 22:11:42 +08:00
|
|
|
program InstructionEditor;
|
|
|
|
|
|
|
|
uses
|
|
|
|
Vcl.Forms,
|
|
|
|
formMain in 'Forms\formMain.pas' {frmMain},
|
2016-09-13 11:26:55 +08:00
|
|
|
Zydis.InstructionEditor in 'Zydis.InstructionEditor.pas',
|
|
|
|
Zydis.InstructionFilters in 'Zydis.InstructionFilters.pas',
|
2016-08-23 22:11:42 +08:00
|
|
|
untHelperClasses in 'untHelperClasses.pas',
|
|
|
|
formEditorCPUIDFeatureFlags in 'Forms\Editors\formEditorCPUIDFeatureFlags.pas' {frmEditorCPUIDFeatureFlags},
|
|
|
|
Vcl.Themes,
|
|
|
|
Vcl.Styles,
|
|
|
|
untPropertyHints in 'untPropertyHints.pas',
|
|
|
|
formCreateDefinition in 'Forms\formCreateDefinition.pas' {frmCreateDefinition},
|
|
|
|
formEditorX86Registers in 'Forms\Editors\formEditorX86Registers.pas' {frmEditorX86Registers},
|
2016-09-22 02:02:09 +08:00
|
|
|
formCodeGenerator in 'Forms\formCodeGenerator.pas' {frmCodeGenerator},
|
2016-09-13 11:26:55 +08:00
|
|
|
Zydis.CodeGenerator in 'Zydis.CodeGenerator.pas',
|
2016-09-23 03:19:15 +08:00
|
|
|
untPropertyEditors in 'untPropertyEditors.pas';
|
2016-08-23 22:11:42 +08:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
{$IFDEF DEBUG}
|
|
|
|
ReportMemoryLeaksOnShutdown := true;
|
|
|
|
{$ENDIF}
|
|
|
|
Application.Initialize;
|
|
|
|
Application.MainFormOnTaskbar := True;
|
|
|
|
Application.CreateForm(TfrmMain, frmMain);
|
|
|
|
Application.Run;
|
|
|
|
end.
|