-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathOrionZEm.dpr
51 lines (47 loc) · 2.03 KB
/
OrionZEm.dpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/////////////////////////////////////////////////////////////////////////
// //
// Orion/Z (Orion-128 + Z80-CARD-II) emulator, version 1.9 //
// //
// Author: Sergey A. <[email protected]> //
// //
// Copyright (C) 2006-2016 Sergey A. //
// //
// This program is free software; you can redistribute it and/or //
// modify it in any ways. //
// This program is distributed "AS IS" in the hope that it will be //
// useful, but WITHOUT ANY WARRANTY; without even the implied //
// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. //
// //
/////////////////////////////////////////////////////////////////////////
program OrionZEm;
uses
Forms,
mainwin in 'mainwin.pas' {frmMain},
modWaveOut in 'modWaveOut.pas',
modZ80 in 'modZ80.pas',
ScrThrd in 'ScrThrd.pas',
mod8255 in 'mod8255.pas',
mod1793 in 'mod1793.pas',
modOrion in 'modOrion.pas',
mod146818 in 'mod146818.pas',
settswin in 'settswin.pas' {frmSetts},
uIniMngr in 'uIniMngr.pas',
frmAbout in 'frmAbout.pas' {AboutBox},
modAY8912 in 'modAY8912.pas',
modHDD in 'modHDD.pas',
HDDUtils in 'HDDUtils.pas',
modF600 in 'modF600.pas',
frmSaveOrd in 'frmSaveOrd.pas' {FrmSave},
uPackOdi in 'UTILS\OdiWcx-OhiWcx\uPackOdi.pas',
wcxhead in 'UTILS\OdiWcx-OhiWcx\wcxhead.pas',
frNewVal in 'frNewVal.pas' {frmNewVal},
modSD in 'modSD.pas',
mod232 in 'mod232.pas',
EthThrd in 'EthThrd.pas',
mod8019as in 'mod8019as.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.