program Simx86;
uses
Forms,
Simx86p in 'SIMX86P.PAS' {SIMx86Form},
Patterns in 'PATTERNS.PAS',
Getinput in 'GETINPUT.PAS' {InputForm};
{$R *.RES}
begin
Application.Title := 'SIMx86';
Application.CreateForm(TSIMx86Form, SIMx86Form);
Application.CreateForm(TInputForm, InputForm);
Application.Run;
end.