diff options
| author | Dave Chapman <dave@dchapman.com> | 2006-09-15 11:11:16 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2006-09-15 11:11:16 +0000 |
| commit | 05a7f14f8dbf46fa64c035127ff1e04cfffb841b (patch) | |
| tree | c107a0038736337811de70dd0e48e670d35246a2 /apps/plugins/zxbox.c | |
| parent | 1350d57751f30f1700912e6abaa1d845af973f75 (diff) | |
| download | rockbox-05a7f14f8dbf46fa64c035127ff1e04cfffb841b.zip rockbox-05a7f14f8dbf46fa64c035127ff1e04cfffb841b.tar.gz rockbox-05a7f14f8dbf46fa64c035127ff1e04cfffb841b.tar.bz2 rockbox-05a7f14f8dbf46fa64c035127ff1e04cfffb841b.tar.xz | |
Initial commit of zxbox - a ZX Spectrum emulator ported by Anton Romanov. It theoretically runs on all targets, but I have not included it in the Archos builds because it is just too slow to be usable.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10950 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/zxbox.c')
| -rw-r--r-- | apps/plugins/zxbox.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/apps/plugins/zxbox.c b/apps/plugins/zxbox.c new file mode 100644 index 0000000..2f3ce97 --- /dev/null +++ b/apps/plugins/zxbox.c @@ -0,0 +1,31 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * + * Overlay loader stub plugin for zxbox on Archos + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#include "plugin.h" + +#if MEM <= 8 && !defined(SIMULATOR) + +#include "overlay.h" + +PLUGIN_HEADER + +/* this is the plugin entry point */ +enum plugin_status plugin_start(struct plugin_api* api, void* parameter) +{ + return run_overlay(api, parameter, "/.rockbox/viewers/zxbox.ovl", "ZXBox"); +} +#endif |