source: branches/simple/simple.lpr

Last change on this file was 42, checked in by chronos, 9 months ago
  • Modified: Improved simple virtual machine.
File size: 626 bytes
Line 
1program simple;
2
3{$mode objfpc}{$H+}
4
5uses
6 {$IFDEF UNIX}
7 cthreads,
8 {$ENDIF}
9 {$IFDEF HASAMIGA}
10 athreads,
11 {$ENDIF}
12 Interfaces, // this includes the LCL widgetset
13 Forms, FormMain, Cpu, Machine, Channel, Memory,
14DeviceManager, Device, Console,
15 Screen, Assembler, Parser, Instructions, Message, FormScreen, FormConsole,
16 FormAssembler, FormDevices, FormDisassembler, FormMessages, FormStorage,
17 Pin, FormDevice, Storage;
18
19{$R *.res}
20
21begin
22 RequireDerivedFormResource:=True;
23 Application.Scaled:=True;
24 Application.Initialize;
25 Application.CreateForm(TFormMain, FormMain.FormMain);
26 Application.Run;
27end.
28
Note: See TracBrowser for help on using the repository browser.