NXengine keyboard input

This commit is contained in:
Ehmry - 2019-03-20 00:55:54 +01:00
parent b7d04cb18e
commit 42672feae0
8 changed files with 56 additions and 6 deletions

View File

@ -73,3 +73,5 @@ endif
LINK_T = $(TUP_CWD)/link.T
DEFINES += -D__LIBRETRO__ -DFRONTEND_SUPPORTS_RGB565
NO_UNDEFINED = --no-undefined
LIBRETRO_COMM_DIR = $(TUP_CWD)/../libretro-common

View File

@ -2,13 +2,12 @@ CORE_PKGS += stdcxx libc libm
NO_UNDEFINED =
# __cxa_...
EXTRACTDIR = $(CORE_DIR)/extract-auto
include upstream/Makefile.common
CFLAGS += -O2 -DNDEBUG
CFLAGS += -DHAVE_INTTYPES_H
CFLAGS += -DINLINE="inline"
DEFINES += -O2 -DNDEBUG
DEFINES += -DHAVE_INTTYPES_H
DEFINES += -DINLINE="inline"
CFLAGS += -std=gnu11
CXXFLAGS += -fno-rtti -fno-exceptions

@ -1 +1 @@
Subproject commit 399c670554ae433d479292a482a3c0461dc15a18
Subproject commit 6e0bdc07e49f16279eb645c0ac70ef2f94227bc8

@ -1 +1 @@
Subproject commit 434a523034d99ac3522f1a4aaf1e60fafe265703
Subproject commit 364986225486b2c7f4d7e0d048a0121849caebe2

View File

@ -0,0 +1,3 @@
: archives |> !archives_to_depot |> {package}
: ../runtime |> !runtime_to_depot |> {package}
: {package} |> !publish_pkg |>

View File

@ -0,0 +1,9 @@
include_rules
: |> wget --quiet https://www.cavestory.org/downloads/%o |> cavestoryen.zip {zip}
: {zip} \
|> unzip -D %f -d tmp ; tar cf %o -C tmp/CaveStory . ; rm -r tmp \
|> $(DEPOT_RAW_DIR)/%d/2004.12/doukutsu.tar {raw}
: {raw} |> !publish_raw |>

View File

@ -0,0 +1,6 @@
@SDK_USER@/src/vfs/@SDK_VERSION@
@SDK_USER@/src/libc/@SDK_VERSION@
@SDK_USER@/src/stdcxx/@SDK_VERSION@
@DEPOT_USER@/src/retro_frontend/@DEPOT_VERSION@
@DEPOT_USER@/src/libretro-nxengine/@DEPOT_VERSION@
@DEPOT_USER@/raw/cave_story-en/2004.12

View File

@ -0,0 +1,31 @@
<runtime ram="32M" caps="256" binary="retro_frontend">
<requires>
<audio_out/>
<file_system/>
<nitpicker/>
<rm/>
</requires>
<content>
<rom label="doukutsu.tar"/>
<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"/>
<vfs>
<tar name="doukutsu.tar"/>
<fs/>
<dir name="dev"> <log label="core"/> </dir>
</vfs>
<game/>
<default-controller port="0" device="3"/>
</config>
</runtime>