diff --git a/Makefile.xenon b/Makefile.xenon index a248c922ec..0700d0633b 100644 --- a/Makefile.xenon +++ b/Makefile.xenon @@ -18,7 +18,7 @@ PPU_TARGET_ADJUSTED := ssnes-libxenon.elf32 LDDIRS = -L. -L$(DEVKITXENON)/usr/lib -L$(DEVKITXENON)/xenon/lib/32 INCDIRS = -I. -I$(DEVKITXENON)/usr/include -I$(DEVKITXENON)/usr/include/SDL -OBJ = fifo_buffer.o ssnes.o driver.o file.o settings.o message.o rewind.o movie.o input/sdl.o audio/sdl.o gfx/sdl.o gfx/sdlwrap.o gfx/gfx_common.o ups.o bps.o strl.o screenshot.o audio/hermite.o dynamic.o audio/utils.o conf/config_file.o xenon/cond.o +OBJ = fifo_buffer.o ssnes.o driver.o file.o settings.o message.o rewind.o movie.o input/sdl.o audio/sdl.o gfx/sdl.o gfx/sdlwrap.o gfx/gfx_common.o ups.o bps.o strl.o screenshot.o audio/hermite.o dynamic.o audio/utils.o conf/config_file.o xenon/cond.o xenon/main.o LIBS = -lsnes -lSDL -lxenon -lm -lc DEFINES = -std=gnu99 -DHAVE_CONFIGFILE=1 -DHAVE_SDL=1 -DPACKAGE_VERSION=\"0.9.3\" -DHAVE_GETOPT_LONG=1 diff --git a/xenon/main.c b/xenon/main.c new file mode 100644 index 0000000000..d3c1adb95f --- /dev/null +++ b/xenon/main.c @@ -0,0 +1,254 @@ +/* SSNES - A Super Nintendo Entertainment System (SNES) Emulator frontend for libsnes. + * Copyright (C) 2010-2011 - Hans-Kristian Arntzen + * Copyright (C) 2011 - Daniel De Matteis + * + * Some code herein may be based on code found in BSNES. + * + * SSNES is free software: you can redistribute it and/or modify it under the terms + * of the GNU General Public License as published by the Free Software Found- + * ation, either version 3 of the License, or (at your option) any later version. + * + * SSNES is distributed 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. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with SSNES. + * If not, see . + */ + +#if 0 +int ssnes_main(int argc, char *argv[]); + +#undef main +// Temporary, a more sane implementation should go here. +int main(int argc, char *argv[]) +{ + sys_spu_initialize(4, 3); + char arg1[] = "ssnes"; + char arg2[] = "/dev_hdd0/game/SNES90000/USRDIR/main.sfc"; + char arg3[] = "-v"; + char arg4[] = "-c"; + char arg5[] = "/dev_hdd0/game/SSNE10000/USRDIR/ssnes.cfg"; + char *argv_[] = { arg1, arg2, arg3, arg4, arg5, NULL }; + return ssnes_main(sizeof(argv_) / sizeof(argv_[0]) - 1, argv_); +} + +#endif + +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include