source: branches/CpuSingleSize/Core.lfm

Last change on this file was 238, checked in by chronos, 10 months ago
  • Modified: Removed U prefix from unit names.
  • Fixed: Memory leaks.
File size: 1.6 KB
Line 
1object Core: TCore
2 OnCreate = DataModuleCreate
3 OnDestroy = DataModuleDestroy
4 OldCreateOrder = False
5 Height = 752
6 HorizontalOffset = 659
7 VerticalOffset = 416
8 Width = 1259
9 PPI = 144
10 object ActionList1: TActionList
11 Images = ImageList1
12 Left = 504
13 Top = 296
14 object AExit: TAction
15 Caption = 'Exit'
16 OnExecute = AExitExecute
17 end
18 object ACompile: TAction
19 Caption = 'Compile'
20 OnExecute = ACompileExecute
21 ShortCut = 16504
22 end
23 object ARun: TAction
24 Caption = 'Run'
25 OnExecute = ARunExecute
26 ShortCut = 120
27 end
28 object APause: TAction
29 Caption = 'Pause'
30 end
31 object AStop: TAction
32 Caption = 'Stop'
33 OnExecute = AStopExecute
34 ShortCut = 16497
35 end
36 object ADisassembler: TAction
37 Caption = 'Disassembler'
38 OnExecute = ADisassemblerExecute
39 end
40 object AStepInto: TAction
41 Caption = 'Step into'
42 ShortCut = 118
43 end
44 object AStepOut: TAction
45 Caption = 'Step out'
46 ShortCut = 8311
47 end
48 object AStepOver: TAction
49 Caption = 'Step over'
50 ShortCut = 119
51 end
52 object ARunToCursor: TAction
53 Caption = 'Run to cursor'
54 ShortCut = 115
55 end
56 object ACpu: TAction
57 Caption = 'CPU'
58 OnExecute = ACpuExecute
59 end
60 object ADevices: TAction
61 Caption = 'Devices'
62 OnExecute = ADevicesExecute
63 end
64 object AHelp: TAction
65 Caption = 'Help'
66 OnExecute = AHelpExecute
67 ShortCut = 112
68 end
69 end
70 object ImageList1: TImageList
71 Left = 384
72 Top = 193
73 end
74end
Note: See TracBrowser for help on using the repository browser.