source: branches/ByteArray/Core.lfm

Last change on this file was 59, checked in by chronos, 6 months ago
  • Fixed: Assembler and disassembler to work correctly with supported instructions.
File size: 2.2 KB
Line 
1object Core: TCore
2 OnCreate = DataModuleCreate
3 OnDestroy = DataModuleDestroy
4 OldCreateOrder = False
5 Height = 729
6 HorizontalOffset = 992
7 VerticalOffset = 653
8 Width = 1074
9 PPI = 144
10 object PersistentForm1: TPersistentForm
11 MinVisiblePart = 50
12 EntireVisible = False
13 Left = 612
14 Top = 132
15 end
16 object ApplicationInfo1: TApplicationInfo
17 Identification = 1
18 VersionMajor = 1
19 VersionMinor = 0
20 VersionBugFix = 0
21 HomePage = 'https://app.zdechov.net/ChronOS/'
22 AuthorsName = 'Chronos'
23 EmailContact = 'robie@centrum.cz'
24 AppName = 'ByteArray'
25 Description = 'Virtual machine and development environment'
26 ReleaseDate = 45255
27 RegistryKey = '\Software\Chronosoft\ByteArray'
28 RegistryRoot = rrKeyCurrentUser
29 License = 'CC0'
30 Left = 312
31 Top = 132
32 end
33 object Translator1: TTranslator
34 POFilesFolder = 'Languages'
35 Left = 629
36 Top = 273
37 end
38 object ThemeManager1: TThemeManager
39 Left = 299
40 Top = 281
41 end
42 object ActionList1: TActionList
43 Left = 852
44 Top = 132
45 object ASourceEditor: TAction
46 Caption = 'Source editor'
47 OnExecute = ASourceEditorExecute
48 ShortCut = 123
49 end
50 object ADebugger: TAction
51 Caption = 'Debugger'
52 OnExecute = ADebuggerExecute
53 end
54 object ADevices: TAction
55 Caption = 'Devices'
56 end
57 object AExit: TAction
58 Caption = 'Exit'
59 OnExecute = AExitExecute
60 ShortCut = 32883
61 end
62 object AMemory: TAction
63 Caption = 'Memory'
64 OnExecute = AMemoryExecute
65 end
66 object AFullscreen: TAction
67 Caption = 'Fullscreen'
68 OnExecute = AFullscreenExecute
69 ShortCut = 122
70 end
71 object ADisassembler: TAction
72 Caption = 'Disassembler'
73 OnExecute = ADisassemblerExecute
74 end
75 object AStorage: TAction
76 Caption = 'Storage'
77 OnExecute = AStorageExecute
78 end
79 object AScreen: TAction
80 Caption = 'Screen'
81 OnExecute = AScreenExecute
82 end
83 object AConsole: TAction
84 Caption = 'Console'
85 OnExecute = AConsoleExecute
86 end
87 object ASettings: TAction
88 Caption = 'Settings'
89 OnExecute = ASettingsExecute
90 end
91 object AAbout: TAction
92 Caption = 'About'
93 OnExecute = AAboutExecute
94 end
95 end
96end
Note: See TracBrowser for help on using the repository browser.