program simple; {$mode objfpc}{$H+} uses {$IFDEF UNIX} cthreads, {$ENDIF} {$IFDEF HASAMIGA} athreads, {$ENDIF} Interfaces, // this includes the LCL widgetset Forms, FormMain, Cpu, Machine, Channel, Memory, DeviceManager, Device, Console, Screen, Assembler, Parser, Instructions, Message, FormScreen, FormConsole, FormAssembler, FormDevices, FormDisassembler, FormMessages, FormStorage, Pin, FormDevice, Storage; {$R *.res} begin RequireDerivedFormResource:=True; Application.Scaled:=True; Application.Initialize; Application.CreateForm(TFormMain, FormMain.FormMain); Application.Run; end.