240p SNES tests

This commit is contained in:
Ehmry - 2019-04-09 22:28:22 +02:00
parent f981c1e27f
commit 9723778b14
4 changed files with 59 additions and 0 deletions

View File

@ -9,6 +9,7 @@
<pkg path="_/pkg/advanced_tests" info="Libretro tests"/>
<pkg path="_/pkg/dosbox" info="Experimental Libretro port of DOSBox"/>
<index name="Tests">
<pkg path="_/pkg/240pSuite-SNES" info="SNES tests"/>
<pkg path="_/pkg/simple_tests" info="A test core written in C"/>
<pkg path="_/pkg/advanced_tests" info="An advanced test core written in C"/>
<pkg path="_/pkg/button_test" info="Libretro joypad button test"/>

Binary file not shown.

View File

@ -0,0 +1,14 @@
TARGET_NAME = 240pSuite-SNES
include_rules
: 240pSuite-SNES-1.03.zip |> unzip %f %o \
|> $(RAW_DIR)/240pSuite.sfc $(RAW_DIR)/README.TXT {raw}
: foreach {raw} |> !collect_raw |>
: |> !raw |>
PKG_DEPENDS += \
_/pkg/snes9x \
_/raw/$(TARGET_NAME) \
: runtime |> !collect_pkg_runtime |>

View File

@ -0,0 +1,44 @@
<runtime ram="32M" caps="192" binary="retro_frontend">
<requires>
<audio_out/>
<nitpicker/>
<rm/>
</requires>
<content>
<rom label="240pSuite.sfc"/>
<rom label="libc.lib.so"/>
<rom label="libm.lib.so"/>
<rom label="libretro.so"/>
<rom label="retro_frontend"/>
<rom label="stdcxx.lib.so"/>
<rom label="vfs.lib.so"/>
</content>
<config>
<libc stdout="/dev/log" stderr="/dev/log"/>
<game/>
<vfs>
<rom name="240pSuite.sfc"/>
<dir name="dev"> <log label="core"/> </dir>
</vfs>
<default-controller port="0" device="1">
<map from="KEY_LEFT" to="LEFT"/>
<map from="KEY_RIGHT" to="RIGHT"/>
<map from="KEY_UP" to="UP"/>
<map from="KEY_DOWN" to="DOWN"/>
<map from="KEY_X" to="A"/>
<map from="KEY_Z" to="B"/>
<map from="KEY_S" to="X"/>
<map from="KEY_A" to="Y"/>
<map from="KEY_Q" to="L"/>
<map from="KEY_W" to="R"/>
<map from="KEY_ENTER" to="START"/>
<map from="KEY_RIGHTSHIFT" to="SELECT"/>
</default-controller>
</config>
</runtime>