cc68a136 |
1 | #include <stdlib.h>\r |
2 | #include <stdio.h>\r |
3 | #include <eikenv.h>\r |
4 | #include <e32keys.h>\r |
5 | #include <eikapp.h>\r |
6 | #include <zlib.h>\r |
7 | #ifdef S60V3\r |
8 | #include <picodrive.rsg>\r |
9 | #else\r |
10 | #include <picodriveS60.rsg>\r |
11 | #endif\r |
12 | #include <eikdoc.h>\r |
13 | #include <aknlistquerydialog.h>\r |
14 | #include <s32file.h>\r |
15 | #include <string.h>\r |
16 | #include <ctype.h>\r |
17 | #include <eikenv.h>\r |
18 | #include <sys\time.h>\r |
19 | \r |
20 | #include "PicoDriveexe.h"\r |
21 | #include "pico.h"\r |
22 | #include "unzip.h"\r |
23 | #include "PicoInt.h"\r |
24 | #include "GGenie.h"\r |
25 | \r |
26 | TInt KLineGap = 2;\r |
27 | static const char* KAboutText = \r |
28 | "This emulator uses code from\n"\r |
29 | "these people/projects:\n"\r |
30 | "\n"\r |
31 | "Dave\n"\r |
32 | "Cyclone 68000 core,\n"\r |
33 | "Pico emulation library\n"\r |
34 | "Homepage:http://www.finalburn.com\n"\r |
35 | "E-mail: david(at)finalburn.com\n"\r |
36 | "\n"\r |
37 | "notaz\n"\r |
38 | "UIQ port,Cyclone 68000 hacks,some\n"\r |
39 | "additional coding (see changelog).\n"\r |
40 | "Homepage:http://notaz.atspace.com/\n"\r |
41 | "E-mail: notasas(at)gmail.com\n"\r |
42 | "\n"\r |
43 | "Reesy\n"\r |
44 | "DrZ80, the Z80 emulator\n"\r |
45 | "written in ARM assembly.\n"\r |
46 | "Homepage: http://reesy.gp32x.de/\n"\r |
47 | "E-mail:drsms_reesy(at)yahoo.co.uk\n"\r |
48 | "\n"\r |
49 | "Tatsuyuki Satoh, Jarek Burczynski,\n"\r |
50 | "MultiArcadeMachineEmulator\n"\r |
51 | "development\n"\r |
52 | "software implementation of\n"\r |
53 | "Yamaha FM sound generator\n"\r |
54 | "\n"\r |
55 | "MultiArcadeMachineEmulator(MAME)\n"\r |
56 | "development\n"\r |
57 | "Texas Instruments SN76489/SN76496\n"\r |
58 | "programmable tone/noise generator\n"\r |
59 | "Homepage: http://www.mame.net/\n"\r |
60 | "\n"\r |
61 | "Additional thanks\n"\r |
62 | "-----------------\n"\r |
63 | "* Peter van Sebille for ECompXL\n"\r |
64 | " and his various open-source\n"\r |
65 | " Symbian project to learn from.\n"\r |
66 | "* Mark and Jean-loup for zlib\n"\r |
67 | " library.\n"\r |
68 | "* Reesy for also finding some\n"\r |
69 | " Cyclone bugs.\n"\r |
70 | "* Charles MacDonald\n"\r |
71 | " (http://cgfm2.emuviews.com/)\n"\r |
72 | " for old but still very useful\n"\r |
73 | " info about genesis hardware.\n"\r |
74 |