NetherSX2-Turnip Classic - RetroBIOS¶
Technical notes
PlayStation 2 emulator for Android, package xyz.aethersx2.cturnip, activity xyz.aethersx2.android.EmulationActivity, version name v2.2n-3668, label NetherSX2 Classic (Turnip). It sits on the 3668 line: the library it starts from is NetherSX2 Classic v2.2n-3668, itself a patch of the AetherSX2 v1.5-3668 package, and the library still names itself NetherSX2 v2.2n-3668 (Classic). Everything below was read from the v0.7 package: lib/arm64-v8a/libemucore.so, libvulkad.so, the dex and the assets. ref: nethersx2-turnip-classic v0.7 AndroidManifest.xml, nethersx2-turnip-classic v0.7 libemucore.so 0xcdcba
The package pairs two revisions of the project. libemucore.so is the blob the v0.7 commit carries, byte for byte; libvulkad.so is the one committed for v0.6 and reports its own build date. libhook_impl.so, libmain_hook.so and the six packed drivers are the same at both revisions. The shim rules described here are therefore those of the older revision, which this profile pins: SM8350, lahaina, sdm845 and napali still route to the a6xx-Patched driver, and SM6475, SM6650 and SM7325 are not known to it. ref: VulkanShim2/vulkan_shim.cpp:1027-1059, nethersx2-turnip-classic v0.7 libvulkad.so
The patch rewrites twenty-four places in the library it starts from. Three are the strings libvulkan.so, libvulkan.so.1 and the message naming them, each turned into libvulkad.so, so the Vulkan loader opens the shim instead of the system driver. Sixteen turn comparisons into unconditional paths, among them the memchr scan for the twenty-two byte pattern that precedes the certificate test and two byte-wise string comparisons whose result is forced to equal, which is what lets the package be resigned under a new application id. Five move settings defaults: the renderer enum from 12 to 14, the upscale multiplier fallback from 1.0 to 2.0 with the configuration read short-circuited, the hardware download mode default, and the warning text that went with it. The same five sites carry their unpatched forms in the 4248 library this project also starts from, which is what places them here rather than in the base. None of them is in a file loading path. ref: nethersx2-turnip-classic v0.7 libemucore.so 0x105f5b, nethersx2-turnip-classic v0.7 libemucore.so 0x829ae0-0x82a018, nethersx2-turnip-classic v0.7 libemucore.so 0x82d10c-0x82d5c0, nethersx2-turnip-classic v0.7 libemucore.so 0x82e41c, nethersx2-turnip-classic v0.7 libemucore.so 0x82fbac-0x82fcac, nethersx2-turnip-classic v0.7 libemucore.so 0x8034c4, nethersx2-turnip-classic v0.7 libemucore.so 0x833d04, nethersx2-turnip-classic v0.7 libemucore.so 0x83401c-0x834028, nethersx2-turnip-classic v0.7 libemucore.so 0x834cb0
A BIOS image is required and boot stops without one, the application raising a startup error saying it needs a PS2 BIOS in the bios folder of the data directory. The data directory is getExternalFilesDir(null) with getDataDir() behind it, so it follows the application id, and the folder names under it come from the Folders section, Bios defaulting to bios. An image imported through the interface is written to that folder under the CRC32 of its contents, as %08X.bin. ref: nethersx2-turnip-classic v0.7 libemucore.so 0x8057dc, nethersx2-turnip-classic v0.7 libemucore.so 0x7dfaf0-0x7dfb10, xyz/aethersx2/android/NativeLibrary initializeOnce, xyz/aethersx2/android/NativeLibrary importBIOS
Detection is by content. The scan lists the BIOS folder with a * mask, keeps files between 4194304 and 8388608 bytes, and accepts an image whose romdir carries a RESET entry followed by a readable ROMVER; the fifth ROMVER character gives the zone, A for USA, C for China, E for Europe, H for Asia, J for Japan, P for Free, T for T10K and X for Test, any other character standing for itself. The sixth character is read only to pick the word Console or Devel for the description, and the acceptance flag is set outright once ROMVER has been read, so development images pass with nothing patched here. RESET and ROMVER are the only two names the scan compares. An image named in the configuration is combined with the BIOS folder and opened at that path when it exists, without the size filter and without the romdir test. No name and no hash is matched anywhere. The image is read into the 4 MB ROM region and truncated to it, and one shorter than 2465792 bytes turns off the OSDSys parameter HLE. ref: aethersx2/pcsx2/ps2/BiosTools.cpp:27-28, aethersx2/pcsx2/ps2/BiosTools.cpp:62-175, aethersx2/pcsx2/ps2/BiosTools.cpp:235-260, aethersx2/pcsx2/ps2/BiosTools.cpp:272-332, nethersx2-turnip-classic v0.7 libemucore.so 0x81bc00-0x81bc24, nethersx2-turnip-classic v0.7 libemucore.so 0x81be44-0x81c1c0, nethersx2-turnip-classic v0.7 libemucore.so 0x81b5e8-0x81b62c
Companions derive from the selected image. rom1 and rom2 are appended to the full name first, then substituted for the existing extension, so an image at ps2-0230a-20080220.bin is followed by ps2-0230a-20080220.bin.rom1 then ps2-0230a-20080220.rom1. The nvm and the mec are read at the substituted extension only, and both are written with defaults when they are absent or too short. This code line loads no erom: the extension is named nowhere in the library and the boot path goes from rom2 straight to the IRX. ref: aethersx2/pcsx2/ps2/BiosTools.cpp:193-218, aethersx2/pcsx2/CDVD/CDVD.cpp:120-144, aethersx2/pcsx2/CDVD/CDVD.cpp:158-226, nethersx2-turnip-classic v0.7 libemucore.so 0x81b688-0x81b9a4
The network adapter opens eeprom.dat and flash.dat by bare name, so they resolve against the process working directory, which the application never sets. A compiled-in image stands in for the first and a card filled with 0xFF for the second. DEV9hdd.raw is the default name of the empty disk image its settings page writes. An IRX named in the configuration is read into the ROM region at 0x3C0000 at boot; the field is empty by default and names no file of its own. ref: aethersx2/pcsx2/DEV9/DEV9.cpp:73, aethersx2/pcsx2/DEV9/DEV9.cpp:145-160, aethersx2/pcsx2/DEV9/flash.cpp:76-103, aethersx2/pcsx2/ps2/BiosTools.cpp:220-233, nethersx2-turnip-classic v0.7 libemucore.so 0x7bb5cc-0x7bb680, nethersx2-turnip-classic v0.7 libemucore.so 0x81b9a4-0x81bac4
The Vulkan path is the reason this build exists. libemucore.so opens libvulkad.so.1 then libvulkad.so where the stock library names libvulkan.so, and vkCreateInstance is resolved from it. That shim reads the Adreno model and the platform name from the kgsl sysfs nodes, picks one of six Turnip drivers packed beside it, creates a linker namespace over its own library directory and loads libhook_impl.so and libmain_hook.so into it. The system /system/lib64/libvulkan.so is then opened inside that namespace with its soname patched, so its own driver load lands in the hook, which opens the chosen Turnip driver instead of the vendor ICD. A driver present at /data/local/tmp/libvulkan_freedreno.so is tested first and wins over all six. When the namespace cannot be built the shim falls back to patching the system library's global offset table, and that path alone loads libbase.so, libcutils.so, libvndksupport.so and libhardware.so from the library directory. The shim derives the package name from its own library path and appends to vulkan_shim.log under the files folder of that package. ref: VulkanShim2/vulkan_shim.cpp:43-73, VulkanShim2/vulkan_shim.cpp:1008-1085, VulkanShim2/vulkan_shim.cpp:1107-1175, VulkanShim2/vulkan_shim.cpp:1179-1194, VulkanShim2/hook_impl.cpp:38-140, nethersx2-turnip-classic v0.7 libemucore.so 0x8a45ec-0x8a4624
Resources are read out of the package itself. The library has no asset manager of its own and calls back into readPackageFile, readPackageFileToString and playSoundAsync, each taking an asset-relative name, so the game database, the patch archives, the interface fonts, the shader sources every backend compiles at startup and the achievement sounds are versioned with the build and never looked for on disk. The sound names are joined to a file:///android_asset base before they cross into Java. The game list draws its region flags and rating stars from the same assets. The game database is this build's own, and five of the shader sources differ from the ones the 4248 line carries: the OpenGL preamble, its format conversion and texture function fragment shaders, and the Vulkan texture function and format conversion shaders. ref: nethersx2-turnip-classic v0.7 libemucore.so 0x828110, xyz/aethersx2/android/NativeLibrary readPackageFile, xyz/aethersx2/android/NativeLibrary playSoundAsync
55 files | 4 required, 51 optional | 38 in repo, 17 missing | 4 with HLE fallback
ps2-0230a-20080220.bin required in repo
PS2 BIOS image
- Path:
bios/ps2-0230a-20080220.bin - Size: min 4.0 MB, max 8.0 MB
- Validation: size
- Source:
aethersx2/pcsx2/ps2/BiosTools.cpp:27-28,aethersx2/pcsx2/ps2/BiosTools.cpp:235-260,nethersx2-turnip-classic v0.7 libemucore.so 0x81bc00-0x81bc24,nethersx2-turnip-classic v0.7 libemucore.so 0x81c1c0 - Platforms: batocera, lakka, recalbox, retroarch, retrobat, retrodeck, retropie, rocknix, romm
- Any image whose romdir holds RESET and a readable ROMVER is accepted, whatever its name. The 4 to 8 MB range gates the folder scan; an image named in the configuration skips both that range and the romdir test.
ps2-0230a-20080220.rom1 optional in repo
DVD player ROM
- Path:
bios/ps2-0230a-20080220.rom1 - Size: max 4.0 MB
- Source:
aethersx2/pcsx2/ps2/BiosTools.cpp:193-218,nethersx2-turnip-classic v0.7 libemucore.so 0x81b688-0x81b810 - Tried as {bios}.rom1 then {biosbase}.rom1. Read at 0x2404000 of the EE memory block and truncated to 4 MB. Logged and skipped when absent.
ps2-0230a-20080220.rom2 optional missing
Chinese ROM extension
- Path:
bios/ps2-0230a-20080220.rom2 - Size: max 512.0 KB
- Aliases:
SCPH-90006_BIOS_VX_HK _230.ROM2 - Source:
aethersx2/pcsx2/ps2/BiosTools.cpp:193-218,nethersx2-turnip-classic v0.7 libemucore.so 0x81b820-0x81b994 - Same two-step naming as rom1. Read at 0x2804000 of the EE memory block and truncated to 512 KB. Only present on Chinese region consoles.
ps2-0230a-20080220.nvm optional in repo HLE fallback
Console NVRAM
- Path:
bios/ps2-0230a-20080220.nvm - Size: min 1.0 KB
- Validation: size
- Source:
aethersx2/pcsx2/CDVD/CDVD.cpp:158-226,nethersx2-turnip-classic v0.7 libemucore.so 0x790470-0x7906c8,nethersx2-turnip-classic v0.7 libemucore.so 0x790820-0x790944 - Read at the BIOS path with the extension replaced by nvm, opened r+b. Carries the console id, the iLink id, the language and the OSD configuration. A 1024 byte image is written when the file is missing or shorter, zeroed except for a fixed iLink id and the language defaults of the BIOS region.
ps2-0230a-20080220.mec optional in repo HLE fallback
Mechacon version
- Path:
bios/ps2-0230a-20080220.mec - Size: min 4 B
- Validation: size
- Source:
aethersx2/pcsx2/CDVD/CDVD.cpp:120-144,nethersx2-turnip-classic v0.7 libemucore.so 0x791700-0x7918f4 - Read at the BIOS path with the extension replaced by mec. Written as 03 06 02 00 when the file is missing or shorter than 4 bytes.
eeprom.dat optional in repo HLE fallback
DEV9 EEPROM
- Size: 64 B
- Source:
aethersx2/pcsx2/DEV9/DEV9.cpp:73,aethersx2/pcsx2/DEV9/DEV9.cpp:145-160,nethersx2-turnip-classic v0.7 libemucore.so 0x7bb620-0x7bb680 - Opened O_RDWR by bare name when the network adapter starts and mapped over 64 bytes. A compiled-in image stands in when the file is missing or cannot be mapped.
flash.dat optional missing HLE fallback
DEV9 SmartMedia flash image
- Size: max 8.2 MB
- Source:
aethersx2/pcsx2/DEV9/flash.cpp:76-103,nethersx2-turnip-classic v0.7 libemucore.so 0x7bb5cc-0x7bb61c - Opened rb by bare name at network adapter init and read as 1024 blocks of 16 pages of 512 bytes plus 16 ECC bytes. The card is filled with 0xFF when the file is absent.
<module>.irx optional missing
IOP module injected at boot
- Source:
aethersx2/pcsx2/ps2/BiosTools.cpp:220-233,aethersx2/pcsx2/ps2/BiosTools.cpp:327-328,nethersx2-turnip-classic v0.7 libemucore.so 0x81b9a4-0x81bac4 - Opened at the path the configuration holds once it is four characters or longer, and read into the ROM region at 0x3C0000, capped at 0x40000 bytes. The field is empty by default and names no file of its own.
libvulkad.so optional missing bundled
Vulkan loader shim
- Path:
lib/arm64-v8a/libvulkad.so - Size: 473.2 KB
- SHA1:
2655469eca93... - MD5:
1a68e1ac1eec... - Source:
VulkanShim2/vulkan_shim.cpp:969-1272,nethersx2-turnip-classic v0.7 libemucore.so 0x8a45ec-0x8a4624 - Opened as libvulkad.so.1 then libvulkad.so where the stock library names libvulkan.so, and vkCreateInstance is resolved from it. Without it the Vulkan backend does not open and the message names the shim. This package carries the build committed for v0.6, one revision behind the emulator library beside it.
libhook_impl.so optional missing bundled
Driver load hook
- Path:
lib/arm64-v8a/libhook_impl.so - Size: 451.0 KB
- SHA1:
5a86d24c83f4... - MD5:
c2a10d75f7a1... - Source:
VulkanShim2/vulkan_shim.cpp:1138-1156,VulkanShim2/hook_impl.cpp:38-140 - Opened into the adrenotools-libvulkan namespace and asked for init_hook_param, which receives the driver directory and driver name. Its hook_android_dlopen_ext is what replaces the vendor driver with the Turnip one, and it reopens itself in each driver namespace it creates.
libmain_hook.so optional missing bundled
Namespace interposer
- Path:
lib/arm64-v8a/libmain_hook.so - Size: 5.5 KB
- SHA1:
e2ee6c00247f... - MD5:
3ded83b3f457... - Source:
VulkanShim2/vulkan_shim.cpp:1159-1160,VulkanShim2/main_hook.c:3-9 - Loaded RTLD_GLOBAL into the same namespace before the system Vulkan library, so its android_dlopen_ext and android_load_sphal_library are the ones that library binds to.
libvulkan_freedreno_T28.so optional missing bundled
Turnip driver, default branch
- Path:
lib/arm64-v8a/libvulkan_freedreno_T28.so - Size: 17.7 MB
- SHA1:
83406408d328... - MD5:
315f4b037b77... - Source:
VulkanShim2/vulkan_shim.cpp:1011,VulkanShim2/vulkan_shim.cpp:1079-1080,VulkanShim2/hook_impl.cpp:127-135 - Chosen when no other branch matches. Loaded by name from the library directory through the hook; a load failure falls back to the vendor driver.
libvulkan_freedreno_a8xx-turnip-gen8-V31.so optional missing bundled
Turnip driver, Adreno 8xx branch
- Path:
lib/arm64-v8a/libvulkan_freedreno_a8xx-turnip-gen8-V31.so - Size: 13.8 MB
- SHA1:
2dc32726b7a6... - MD5:
7f6dbc9ec12c... - Source:
VulkanShim2/vulkan_shim.cpp:1010,VulkanShim2/vulkan_shim.cpp:1037-1052,nethersx2-turnip-classic v0.7 libvulkad.so 0x22770-0x23108 - Chosen whenever the Adreno model reads non-zero, model 810 and 825 included. Model 825 also turns off framebuffer fetch.
libvulkan_freedreno_T24.so optional missing bundled
Turnip driver, Adreno 810 branch
- Path:
lib/arm64-v8a/libvulkan_freedreno_T24.so - Size: 17.2 MB
- SHA1:
d28f7c64a829... - MD5:
e90d691859e0... - Source:
VulkanShim2/vulkan_shim.cpp:1039-1043,nethersx2-turnip-classic v0.7 libvulkad.so 0x22784-0x230d4 - The Adreno 810 branch writes this path and the block it falls into overwrites it with the 8xx driver before anything reads it, so this revision never opens the file. The branch gained its own exit after the revision this package was built from.
libvulkan_freedreno_25.3.0_R6_Gmem.so optional missing bundled
Turnip driver, Adreno 710 and 720 branch
- Path:
lib/arm64-v8a/libvulkan_freedreno_25.3.0_R6_Gmem.so - Size: 11.5 MB
- SHA1:
2159a5172176... - MD5:
3f1b01295ab0... - Source:
VulkanShim2/vulkan_shim.cpp:1056-1059 - Chosen when the model is unreadable and the GPU name holds 710 or 720.
libvulkan_freedreno_v24.1.0_R18.a6xx-Patched.so optional missing bundled
Turnip driver, SD845 to SD888 branch
- Path:
lib/arm64-v8a/libvulkan_freedreno_v24.1.0_R18.a6xx-Patched.so - Size: 9.0 MB
- SHA1:
1abf76c578cb... - MD5:
7af55500464d... - Source:
VulkanShim2/vulkan_shim.cpp:1027-1033 - Chosen when the platform reads SM8250, kona, SM8350, lahaina, sdm845 or napali.
libvulkan_freedreno_T19.so optional missing bundled
Turnip driver, SM6125 branch
- Path:
lib/arm64-v8a/libvulkan_freedreno_T19.so - Size: 11.0 MB
- SHA1:
4dc276dfd584... - MD5:
5f953080ba9a... - Source:
VulkanShim2/vulkan_shim.cpp:1020-1023 - Chosen when the platform reads SM6125 or trinket.
libvulkan_freedreno.so optional missing
Turnip driver override
- Path:
data/local/tmp/libvulkan_freedreno.so - Source:
VulkanShim2/vulkan_shim.cpp:1009,VulkanShim2/vulkan_shim.cpp:1012-1017 - Tested with access before any detection runs. When it exists it becomes the driver and the driver directory becomes /data/local/tmp/, so none of the six packed drivers is consulted.
libbase.so optional missing bundled
Platform support library for the fallback path
- Path:
lib/arm64-v8a/libbase.so - Size: 249.4 KB
- SHA1:
fecf95a804a7... - MD5:
eae5ccb3f801... - Source:
VulkanShim2/vulkan_shim.cpp:1179-1194 - Opened RTLD_GLOBAL from the library directory only when the namespace approach failed and the shim falls back to patching the global offset table.
libcutils.so optional missing bundled
Platform support library for the fallback path
- Path:
lib/arm64-v8a/libcutils.so - Size: 89.1 KB
- SHA1:
63e55bcae5ee... - MD5:
185cd93c21cc... - Source:
VulkanShim2/vulkan_shim.cpp:1179-1194,VulkanShim2/vulkan_shim.cpp:1248-1255 - Same fallback list as libbase.so, and a dependency of every packed driver.
libvndksupport.so optional missing bundled
Platform support library for the fallback path
- Path:
lib/arm64-v8a/libvndksupport.so - Size: 65.3 KB
- SHA1:
a6f2d8498a2f... - MD5:
aa5065cca669... - Source:
VulkanShim2/vulkan_shim.cpp:1179-1194,VulkanShim2/vulkan_shim.cpp:1257-1269 - Same fallback list as libbase.so. Its android_load_sphal_library is the call the shim stubs so a vendor load can be redirected.
libhardware.so optional missing bundled
Platform support library for the fallback path
- Path:
lib/arm64-v8a/libhardware.so - Size: 65.4 KB
- SHA1:
555a6203cd7c... - MD5:
71e06a0726aa... - Source:
VulkanShim2/vulkan_shim.cpp:1179-1194,VulkanShim2/vulkan_shim.cpp:1235-1246 - Same fallback list as libbase.so, and a dependency of every packed driver.
GameIndex.yaml optional in repo bundled
Game database
- Path:
assets/GameIndex.yaml - Size: 1.7 MB
- SHA1:
58fb1f8ea6cf... - MD5:
3f33de7bf8e4... - Source:
aethersx2/pcsx2/GameDatabase.cpp:35,nethersx2-turnip-classic v0.7 libemucore.so 0x2e45fc - Platforms: lakka, retroarch, retropie
- Read from the package by name, keyed by serial, and carrying the per-game fixes, patches and settings overrides. Parsed into gamedb.cache in the cache folder.
cheats_ws.zip optional in repo bundled
Widescreen patch archive
- Path:
assets/cheats_ws.zip - Size: 1.6 MB
- SHA1:
1caae7ddf0cb... - MD5:
cc19970629fe... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x804464 - Per-game pnach entries matched on the disc CRC, read from the package when widescreen patches are enabled. The cheats_ws folder under the data directory takes precedence and the archive is skipped when it holds a match.
cheats_ni.zip optional in repo bundled
No-interlacing patch archive
- Path:
assets/cheats_ni.zip - Size: 217.9 KB
- SHA1:
31cbff66380f... - MD5:
fb2a43dcea09... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x80460c - Same form as cheats_ws.zip, read when no-interlacing patches are enabled, with the cheats_ni folder taking precedence.
Roboto-Regular.ttf required in repo bundled
Interface font
- Path:
assets/fonts/Roboto-Regular.ttf - Size: 298.4 KB
- SHA1:
00d62fbdc8d5... - MD5:
86da78cb5957... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x7d1e78-0x7d1e8c,nethersx2-turnip-classic v0.7 libemucore.so 0x7d2270 - Read as the standard font when the interface comes up. An empty read aborts the process.
RobotoMono-Medium.ttf required in repo bundled
Fixed-width interface font
- Path:
assets/fonts/RobotoMono-Medium.ttf - Size: 84.8 KB
- SHA1:
9056e59b69c6... - MD5:
8ad82b1dc550... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x7d1ecc-0x7d1ee0,nethersx2-turnip-classic v0.7 libemucore.so 0x7d2270 - Read for the fixed-width font. An empty read aborts the process.
fa-solid-900.ttf required in repo bundled
Font Awesome icon font
- Path:
assets/fonts/fa-solid-900.ttf - Size: 199.7 KB
- SHA1:
694b8a2445ff... - MD5:
dffd9504fcb1... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x7d1f20-0x7d1f34,nethersx2-turnip-classic v0.7 libemucore.so 0x7d2270 - Read for the interface icon glyphs. An empty read aborts the process.
ffx_a.h optional in repo bundled
FidelityFX common header
- Path:
assets/shaders/common/ffx_a.h - Size: 157.7 KB
- SHA1:
726370c10154... - MD5:
2c539b603dcb... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x627178 - Prepended to the sharpening shader of both backends.
ffx_cas.h optional in repo bundled
FidelityFX CAS header
- Path:
assets/shaders/common/ffx_cas.h - Size: 62.0 KB
- SHA1:
a1d1a687577f... - MD5:
f8a3d7f48ae1... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x627188 - Prepended to the sharpening shader of both backends.
fxaa.fx optional in repo bundled
FXAA shader source
- Path:
assets/shaders/common/fxaa.fx - Size: 19.0 KB
- SHA1:
3ac5f68049ed... - MD5:
5cdeb2963c1b... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x67c710,nethersx2-turnip-classic v0.7 libemucore.so 0x685fd0 - Read by both backends when FXAA is enabled.
common_header.glsl optional in repo bundled
OpenGL shader preamble
- Path:
assets/shaders/opengl/common_header.glsl - Size: 1.9 KB
- SHA1:
9c391aae0dad... - MD5:
86a37e282f02... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x674618 - Prepended to every OpenGL program the renderer builds.
convert.glsl optional in repo bundled
OpenGL format conversion shader
- Path:
assets/shaders/opengl/convert.glsl - Size: 10.1 KB
- SHA1:
26a17de3b4ab... - MD5:
0dba3321d9f9... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x674f78
present.glsl optional in repo bundled
OpenGL presentation shader
- Path:
assets/shaders/opengl/present.glsl - Size: 9.2 KB
- SHA1:
bf2688971a8e... - MD5:
afbb9a89f17e... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x675480
merge.glsl optional in repo bundled
OpenGL frame merge shader
- Path:
assets/shaders/opengl/merge.glsl - Size: 455 B
- SHA1:
d1a3c11a1273... - MD5:
2c4d70f62928... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x675780
interlace.glsl optional in repo bundled
OpenGL deinterlacing shader
- Path:
assets/shaders/opengl/interlace.glsl - Size: 6.1 KB
- SHA1:
e74e58f530ab... - MD5:
0e537dd838a7... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x675aac
shadeboost.glsl optional in repo bundled
OpenGL brightness and contrast shader
- Path:
assets/shaders/opengl/shadeboost.glsl - Size: 1.4 KB
- SHA1:
8d8b8966afd2... - MD5:
3d1e2be521a6... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x675cb8
cas.glsl optional in repo bundled
OpenGL sharpening shader
- Path:
assets/shaders/opengl/cas.glsl - Size: 2.4 KB
- SHA1:
1a69a0fc522c... - MD5:
f8a684763e24... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x676fa0
tfx_vgs.glsl optional in repo bundled
OpenGL texture function vertex and geometry shader
- Path:
assets/shaders/opengl/tfx_vgs.glsl - Size: 5.6 KB
- SHA1:
0e9e98f766c9... - MD5:
a97e9616f298... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x677318
tfx_fs.glsl optional in repo bundled
OpenGL texture function fragment shader
- Path:
assets/shaders/opengl/tfx_fs.glsl - Size: 25.3 KB
- SHA1:
919c3308c885... - MD5:
9d80855607a6... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x677328
tfx.glsl optional in repo bundled
Vulkan texture function shader
- Path:
assets/shaders/vulkan/tfx.glsl - Size: 27.6 KB
- SHA1:
b4ebf3f7f20f... - MD5:
ebc0ffa3de6f... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x682098
convert.glsl optional in repo bundled
Vulkan format conversion shader
- Path:
assets/shaders/vulkan/convert.glsl - Size: 7.8 KB
- SHA1:
7a133d4cf115... - MD5:
553d33859963... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x68394c,nethersx2-turnip-classic v0.7 libemucore.so 0x685fb8
present.glsl optional in repo bundled
Vulkan presentation shader
- Path:
assets/shaders/vulkan/present.glsl - Size: 8.0 KB
- SHA1:
4871ee00b249... - MD5:
72626d625bb9... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x684728
interlace.glsl optional in repo bundled
Vulkan deinterlacing shader
- Path:
assets/shaders/vulkan/interlace.glsl - Size: 6.5 KB
- SHA1:
f8d14d80036f... - MD5:
bf3caa253287... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x684f74
merge.glsl optional in repo bundled
Vulkan frame merge shader
- Path:
assets/shaders/vulkan/merge.glsl - Size: 669 B
- SHA1:
b09de39d6459... - MD5:
b776383d2160... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x6857c4
shadeboost.glsl optional in repo bundled
Vulkan brightness and contrast shader
- Path:
assets/shaders/vulkan/shadeboost.glsl - Size: 1.7 KB
- SHA1:
26b29f57685d... - MD5:
366b45b6c4e9... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x686284
cas.glsl optional in repo bundled
Vulkan sharpening shader
- Path:
assets/shaders/vulkan/cas.glsl - Size: 2.6 KB
- SHA1:
709fd5393188... - MD5:
56f3cf4de895... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x6869c4
unlock.wav optional in repo bundled
Achievement unlock sound
- Path:
assets/sounds/achievements/unlock.wav - Size: 85.7 KB
- SHA1:
eb488a762176... - MD5:
4d035ee86f83... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x811190 - Joined to the file:///android_asset base and handed to playSoundAsync, which opens it from the package and plays it through MediaPlayer.
lbsubmit.wav optional in repo bundled
Leaderboard submission sound
- Path:
assets/sounds/achievements/lbsubmit.wav - Size: 80.2 KB
- SHA1:
5ad1e110dcf0... - MD5:
fa6a7030a9f2... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x811814
message.wav optional in repo bundled
Achievement notification sound
- Path:
assets/sounds/achievements/message.wav - Size: 15.3 KB
- SHA1:
c54f04b63ac6... - MD5:
d66b0bccd743... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x810254
placeholder.png optional in repo bundled
Fallback interface texture
- Path:
assets/placeholder.png - Size: 2.7 KB
- SHA1:
c36292ab7e16... - MD5:
8f846541ccbf... - Source:
nethersx2-turnip-classic v0.7 libemucore.so 0x7d21fc,nethersx2-turnip-classic v0.7 libemucore.so 0x817be0,nethersx2-turnip-classic v0.7 libemucore.so 0x7ec54c - Requested from the texture cache when a notification or a loading screen has no image of its own. A miss logs that it cannot continue and the caller tears the interface down instead of bringing it up.
<region>.png optional in repo bundled
Game list region flag
- Path:
assets/icons/flags/NTSC-U.png - Source:
nethersx2-turnip-classic v0.7 classes.dex icons/flags/%s.png - Loaded as icons/flags/
.png with the region string of the entry. Thirty are carried, seven NTSC and twenty-two PAL plus Other.
star-<rating>.png optional in repo bundled
Game list compatibility rating icon
- Path:
assets/icons/star-0.png - Source:
nethersx2-turnip-classic v0.7 classes.dex icons/star-%d.png - Loaded as icons/star-
.png for ratings 0 to 5.
faq.html optional in repo bundled
Help page
- Path:
assets/faq.html - Size: 13.7 KB
- SHA1:
9163d4a3d19b... - MD5:
c2a64e0bcc40... - Source:
nethersx2-turnip-classic v0.7 classes.dex android_asset faq.html - Opened under the android_asset scheme by the setup wizard's browser view.
3rdparty.html optional in repo bundled
Third party notices page
- Path:
assets/3rdparty.html - Size: 88.2 KB
- SHA1:
7743bf1d7e6e... - MD5:
fb4ff036f3e4... - Source:
nethersx2-turnip-classic v0.7 classes.dex android_asset 3rdparty.html - Opened under the android_asset scheme in the built-in browser view.
Generated on 2026-08-23T16:12:06Z