opendingux|opendingux|CROSS_COMPILE=mipsel-linux- CFLAGS="-I$TC/usr/include -I$TC/usr/include/SDL" LDFLAGS="--sysroot $TC -L$TC/lib" ./configure --platform=opendingux
opendingux|opendingux with ubuntu mips gcc 5.4|CROSS_COMPILE=mipsel-linux-gnu- CFLAGS="-I$TC/usr/include -I$TC/usr/include/SDL" LDFLAGS="-B$TC/usr/lib -B$TC/lib -Wl,-rpath-link=$TC/usr/lib -Wl,-rpath-link=$TC/lib" ./configure --platform=opendingux
gcw0|gcw0|CROSS_COMPILE=mipsel-gcw0-linux-uclibc- CFLAGS="-I$TC/usr/mipsel-gcw0-linux-uclibc/sysroot/usr/include -I$TC/usr/mipsel-gcw0-linux-uclibc/sysroot/usr/include/SDL" LDFLAGS="--sysroot $TC/usr/mipsel-gcw0-linux-uclibc/sysroot" ./configure --platform=gcw0
+rg350|rg350|CROSS_COMPILE=mipsel-linux- CFLAGS="-I$TC/usr/include -I$TC/usr/include/SDL" LDFLAGS="--sysroot $TC -L$TC/lib" ./configure --platform=rg350
For gp2x, wiz, and caanoo you may need to compile libpng first.
# setting options to "yes" or "no" will make that choice default,
# "" means "autodetect".
-platform_list="generic pandora gp2x wiz caanoo opendingux gcw0 rpi1 rpi2"
+platform_list="generic pandora gp2x wiz caanoo opendingux gcw0 rg350 rpi1 rpi2"
platform="generic"
sound_driver_list="oss alsa sdl"
sound_drivers=""
CXX="${CXX-${CROSS_COMPILE}g++}"
AS="${AS-${CROSS_COMPILE}as}"
STRIP="${STRIP-${CROSS_COMPILE}strip}"
-test -n "$SDL_CONFIG" || SDL_CONFIG="`$CC $CFLAGS $LDFLAGS --print-sysroot 2> /dev/null || true`/usr/bin/sdl-config"
+SYSROOT=`$CC $CFLAGS $LDFLAGS --print-sysroot 2> /dev/null || true`
+test -n "$SDL_CONFIG" || SDL_CONFIG="$(ls $SYSROOT/*bin*/sdl-config 2>/dev/null | grep /bin/sdl-config | head -n 1)"
+test -n "$SDL_CONFIG" || SDL_CONFIG="$(ls $SYSROOT/*/*bin*/sdl-config 2>/dev/null | grep /bin/sdl-config | head -n 1)"
+#test -n "$SDL_CONFIG" || SDL_CONFIG="$(ls $SYSROOT/*bin*/sdl2-config 2>/dev/null | grep /bin/sdl2-config | head -n 1)"
+#test -n "$SDL_CONFIG" || SDL_CONFIG="$(ls $SYSROOT/*/*bin*/sdl2-config 2>/dev/null | grep /bin/sdl2-config | head -n 1)"
+SDLVERSION=sdl && echo $SDL_CONFIG | grep -q sdl2 && SDLVERSION=sdl2
MAIN_LDLIBS="$LDLIBS -lm"
config_mak="config.mak"
;;
generic)
;;
- opendingux | gcw0)
+ opendingux | gcw0 | rg350)
sound_drivers="sdl"
# both are really an opendingux
+ CFLAGS="$CFLAGS -D__`echo $platform | tr '[a-z]' '[A-Z]'`__"
platform="opendingux"
;;
pandora)
CFLAGS="$CFLAGS `$SDL_CONFIG --cflags`"
MAIN_LDLIBS="`$SDL_CONFIG --libs` $MAIN_LDLIBS"
check_sdl `$SDL_CONFIG --libs` || fail "please install libsdl (libsdl1.2-dev)"
+ if [ "$SDLVERSION" = "sdl2" ]; then
+ CFLAGS="$CFLAGS -D__USE_SDL2__"
+ fi
fi
if check_option -Wno-unused_result; then
[Desktop Entry]
+Type=Application
Name=Picodrive
Comment=A megadrive/genesis emulator
-Exec=PicoDrive
-Terminal=false
-Type=Application
-StartupNotify=true
+Exec=PicoDrive %f
Icon=megadrive
+Terminal=false
Categories=emulators;
+MimeType=.md;.smd;.bin;.sms;.cue;.32x;.zip;.7z
{ SDLK_BACKSPACE, PBTN_R },
};
+#if !defined(__RG350__)
const char * const in_sdl_key_names[SDLK_LAST] = {
[SDLK_UP] = "UP",
[SDLK_DOWN] = "DOWN",
[SDLK_ESCAPE] = "SELECT",
[SDLK_POWER] = "POWER",
[SDLK_PAUSE] = "LOCK",
+
+ [SDLK_PAGEUP] = "L2",
+ [SDLK_PAGEDOWN] = "R2",
+ [SDLK_KP_DIVIDE] = "L3",
+ [SDLK_KP_PERIOD] = "R3",
+};
+#else
+/* RG 350 */
+const char * const in_sdl_key_names[SDLK_LAST] = {
+ [SDLK_UP] = "UP",
+ [SDLK_DOWN] = "DOWN",
+ [SDLK_LEFT] = "LEFT",
+ [SDLK_RIGHT] = "RIGHT",
+ [SDLK_LCTRL] = "A",
+ [SDLK_LALT] = "B",
+ [SDLK_SPACE] = "X",
+ [SDLK_LSHIFT] = "Y",
+ [SDLK_TAB] = "L",
+ [SDLK_BACKSPACE] = "R",
+ [SDLK_RETURN] = "START",
+ [SDLK_ESCAPE] = "SELECT",
+ [SDLK_HOME] = "POWER",
+ [SDLK_PAUSE] = "LOCK",
+
+ [SDLK_PAGEUP] = "L2",
+ [SDLK_PAGEDOWN] = "R2",
+ [SDLK_KP_DIVIDE] = "L3",
+ [SDLK_KP_PERIOD] = "R3",
};
+#endif