Changeset 57 for branches/ByteArray/ByteArray.lpr
- Timestamp:
- Nov 23, 2023, 10:42:57 PM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ByteArray/ByteArray.lpr
r50 r57 1 1 program ByteArray; 2 3 {$mode objfpc}{$H+}4 2 5 3 uses 6 4 {$IFDEF UNIX} 7 cthreads, 5 cthreads, clocale, 8 6 {$ENDIF} 9 7 {$IFDEF HASAMIGA} … … 12 10 Interfaces, SysUtils,// this includes the LCL widgetset 13 11 Forms, FormMain, FormConsole, FormDevice, FormScreen, FormDisassembler, 14 FormAssembler, Cpu, BigInt, Channel, Common.Memory, FrameBuffer, Device, Storage, 15 DeviceMapper, Machine, Disassembler, Instructions, Parser, Message, Assembler, 16 Serial, Mouse, FormSourceEditor, FormMessages, FormMemory, FormStorage, Common 12 FormAssembler, Cpu, BigInt, Channel, Common.Memory, FrameBuffer, Device, 13 Storage, DeviceMapper, Machine, Disassembler, Instructions, Parser, Message, 14 Assembler, Serial, Mouse, FormSourceEditor, FormMessages, FormMemory, 15 FormStorage, Common, FormSettings, Core, FormDebugger 17 16 { you can add units after this }; 18 17 … … 34 33 Application.Scaled:=True; 35 34 Application.Initialize; 35 Application.CreateForm(TCore, Core.Core); 36 36 Application.CreateForm(TFormMain, FormMain.FormMain); 37 37 Application.Run;
Note:
See TracChangeset
for help on using the changeset viewer.