bash: ./t64: 没有那个文件或目录

1.概要

2.内容

1.bash: ./t64: 没有那个文件或目录

错误信息 "bash: ./t64: 没有那个文件或目录" 表示在当前的目录下,bash 无法找到名为 t64 的文件或目录。这可能是由以下几个原因引起的:

  1. 文件或目录不存在
    • 确保你当前所在的目录确实包含名为 t64 的文件或目录。
    • 使用 ls 命令查看当前目录的内容,确认 t64 是否存在。
  2. 路径错误
    • 如果你不在包含 t64 的目录中,你需要切换到正确的目录。可以使用 cd 命令来切换目录。
    • 也可以使用绝对路径直接访问 t64,例如 /path/to/t64
  3. 权限问题
    • 确保你有足够的权限访问 t64。如果文件或目录存在但是没有权限,你可能无法看到它。
    • 使用 ls -l 可以查看文件和目录的权限。
  4. 文件是一个可执行脚本但没有执行权限
    • 如果 t64 是一个脚本,确保它有执行权限。
    • 你可以使用 chmod +x t64 命令来添加执行权限。
  5. 错误的解释器路径
    • 如果 t64 是一个脚本,并且在脚本的顶部指定了错误的解释器路径(如 #!/bin/falsepath),系统也会报告找不到文件或目录的错误。
    • 检查脚本的第一行,确保指定的解释器路径是正确的。
  6. 二进制文件格式不兼容或损坏
    • 如果 t64 是一个二进制文件,确保该文件没有损坏,且是为你的系统架构编译的。

解决步骤:

  • 首先,确认当前目录是否正确。
  • 使用 ls -l 查看文件和目录的详细列表。
  • 如果文件存在但无法执行,检查权限和文件类型。
  • 如果是脚本,检查第一行的解释器路径和脚本的权限。

如果以上步骤都无法解决问题,可能需要更详细地检查文件 t64 的来源和用途,或者联系文件的提供者获取帮助。

2.t64是我用交叉编译器编译的程序,结果运行报上面的问题,如何确认问题原因呢 

当你使用交叉编译器编译的程序 t64 在运行时报告 "bash: ./t64: 没有那个文件或目录" 的错误时,这通常意味着系统无法找到或无法执行该文件。针对这种情况,可以按照以下步骤来确认问题原因:

1. 确认文件存在性

  • 使用 ls -l 命令列出当前目录下的所有文件和目录,确认 t64 文件是否确实存在。

2. 检查文件权限

  • 使用 ls -l t64 查看 t64 文件的权限设置。确保文件具有执行权限(在权限位中应有 x)。
  • 如果没有执行权限,可以使用 chmod +x t64 命令添加执行权限。

3. 确认文件路径

  • 确保你在正确的目录下运行 t64。使用 pwd 命令查看当前工作目录。
  • 如果 t64 不在当前目录,你需要切换到包含该文件的目录,或者使用文件的绝对路径来运行它。

4. 检查文件类型

  • 使用 file t64 命令查看 t64 文件的类型。确认它是一个可执行文件。

5. 确认解释器路径(如果适用)

  • 如果 t64 是一个脚本文件,检查脚本文件的第一行(shebang 行),确保它指定的解释器路径是正确的。

6. 确认交叉编译环境

  • 由于 t64 是用交叉编译器编译的,确保你的系统环境已经正确设置了交叉编译工具链。
  • 检查环境变量如 PATH 是否包含了交叉编译器的路径。

7. 确认目标架构兼容性

  • 确保你编译的 t64 程序是为目标平台的架构编译的,而不是为你的主机平台编译的。
  • 如果目标平台是嵌入式系统或其他非标准架构,确保你的主机系统能够模拟或支持该架构的执行环境。

8. 检查系统兼容库

  • 如果 t64 依赖于特定的库文件,确保这些库文件已经正确安装在系统上,并且路径被包含在库搜索路径中(如 LD_LIBRARY_PATH 环境变量)。

9. 使用strace调试

  • 使用 strace ./t64 命令来跟踪系统调用和信号。这可以帮助你了解系统在尝试执行 t64 时发生了什么,以及为何会报告 "没有那个文件或目录" 的错误。

10. 检查错误消息和日志

  • 仔细检查任何与 t64 相关的错误消息和系统日志,以获取更多关于问题的线索。

通过上述步骤,你应该能够诊断出为什么 t64 在运行时报告 "bash: ./t64: 没有那个文件或目录" 的错误。如果问题仍然存在,可能需要更详细地检查你的交叉编译环境或寻求更专业的帮助。

3.bash: strace: 未找到命令 

如果你在运行 strace ./t64 时收到 “bash: strace: 未找到命令” 的错误,这表示你的系统上未安装 strace 工具。strace 是一个用于跟踪系统调用和信号的工具,它可以帮助你诊断程序在运行时遇到的问题。

要解决这个问题,你需要安装 strace。安装方法取决于你使用的操作系统。以下是一些常见操作系统上安装 strace 的方法:

对于基于 Debian 的系统(如 Ubuntu):

sudo apt-get update
sudo apt-get install strace

对于基于 Red Hat 的系统(如 CentOS、Fedora):

sudo yum install strace # CentOS 7 或更早版本
sudo dnf install strace # CentOS 8、Fedora 等较新版本

对于 Arch Linux:

sudo pacman -S strace

对于其他 Linux 发行版:

请查阅你的发行版的包管理器文档,了解如何安装 strace

一旦安装了 strace,你就可以使用它来跟踪 t64 的系统调用了。运行以下命令:

strace ./t64

这将显示 t64 在尝试执行时所做的所有系统调用,以及这些调用的返回值。通过观察这些输出,你可能会发现导致 “没有那个文件或目录” 错误的原因。

请注意,如果 t64 是一个交叉编译的程序,且你的系统环境与目标环境不同,strace 可能无法完全准确地反映程序在目标环境中的行为。在这种情况下,你可能需要在目标环境上运行 strace,或者使用一个能够模拟目标环境的调试工具。

 

root@ununtu:~# apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent 正在读取软件包列表... 完成 正在分析软件包的依赖关系树 正在读取状态信息... 完成 zabbix-apache-conf 已经是最新版 (1:7.2.4-1+ubuntu24.04)。 zabbix-frontend-php 已经是最新版 (1:7.2.4-1+ubuntu24.04)。 有一些软件包无法被安装。如果您用的是 unstable 发行版,这也许是 因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件 包尚未被创建是它们已被从新到(Incoming)目录移出。 下列信息可能会对解决问题有所帮助: 下列软件包有未满足的依赖关系: zabbix-agent : 依赖: libc6 (>= 2.38) 但是 2.31-0ubuntu9.17 正要被安装 依赖: libcurl4t64 (>= 7.16.2) 但无法安装它 依赖: libldap2 (>= 2.6.2) 但无法安装它 依赖: libssl3t64 (>= 3.0.0) 但无法安装它 zabbix-server-mysql : 依赖: libc6 (>= 2.38) 但是 2.31-0ubuntu9.17 正要被安装 依赖: libcurl4t64 (>= 7.16.3) 但无法安装它 依赖: libevent-core-2.1-7t64 (>= 2.1.8-stable) 但无法安装它 依赖: libevent-extra-2.1-7t64 (>= 2.1.8-stable) 但无法安装它 依赖: libevent-pthreads-2.1-7t64 (>= 2.1.8-stable) 但无法安装它 依赖: libldap2 (>= 2.6.2) 但无法安装它 依赖: libodbc2 (>= 2.3.1) 但无法安装它 依赖: libopenipmi0t64 (>= 2.0.33) 但无法安装它 依赖: libsnmp40t64 (>= 5.9.4+dfsg) 但无法安装它 依赖: libssl3t64 (>= 3.0.0) 但无法安装它 E: 无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关系。
03-14
<?xml version="1.0" encoding="UTF-8"?> <!-- This is the EmulationStation Systems configuration file. All systems must be contained within the <systemList> tag.--> <systemList> <system> <name>amstradcpc</name> <fullname>Amstrad CPC</fullname> <manufacturer>Amstrad</manufacturer> <release>1984</release> <hardware>computer</hardware> <path>/storage/roms/amstradcpc</path> <extension>.dsk .DSK .sna .SNA .tap .TAP .cdt .CDT .voc .VOC .m3u .M3U .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>amstradcpc</platform> <theme>amstradcpc</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">cap32</core> </cores> </emulator> </emulators> </system> <system> <name>arcade</name> <fullname>Arcade</fullname> <manufacturer>Arcade</manufacturer> <hardware>arcade</hardware> <path>/storage/roms/arcade</path> <extension>.zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>arcade</platform> <theme>arcade</theme> <emulators> <emulator name="AdvanceMame"> <cores> <core>AdvanceMame</core> </cores> </emulator> <emulator name="libretro"> <cores> <core default="true">mame2003_plus</core> <core>mame2010</core> <core>fbneo</core> <core>fbalpha2012</core> <core>mba_mini</core> </cores> </emulator> </emulators> </system> <system> <name>mame</name> <fullname>Arcade MAME</fullname> <manufacturer>Arcade</manufacturer> <hardware>arcade</hardware> <path>/storage/roms/mame</path> <extension>.7z .7Z .zip .ZIP</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>arcade</platform> <theme>mame</theme> <emulators> <emulator name="AdvanceMame"> <cores> <core default="true">AdvanceMame</core> </cores> </emulator> <emulator name="libretro"> <cores> <core>mame2003_plus</core> <core>mame2010</core> <core>fbneo</core> <core>fbalpha2012</core> <core>mba_mini</core> </cores> </emulator> </emulators> </system> <system> <name>atari2600</name> <fullname>Atari 2600</fullname> <manufacturer>Atari</manufacturer> <release>1977</release> <hardware>console</hardware> <path>/storage/roms/atari2600</path> <extension>.a26 .A26 .bin .BIN .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>atari2600</platform> <theme>atari2600</theme> <emulators> <emulator name="STELLASA"> <cores> <core>STELLASA</core> </cores> </emulator> <emulator name="libretro"> <cores> <core default="true">stella</core> </cores> </emulator> </emulators> </system> <system> <name>atari5200</name> <fullname>Atari 5200</fullname> <manufacturer>Atari</manufacturer> <release>1982</release> <hardware>console</hardware> <path>/storage/roms/atari5200</path> <extension>.rom .ROM .xfd .XFD .atr .ATR .atx .ATX .cdm .CDM .cas .CAS .bin .BIN .a52 .A52 .xex .XEX .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>atari5200</platform> <theme>atari5200</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">atari800</core> </cores> </emulator> </emulators> </system> <system> <name>atari7800</name> <fullname>Atari 7800</fullname> <manufacturer>Atari</manufacturer> <release>1986</release> <hardware>console</hardware> <path>/storage/roms/atari7800</path> <extension>.a78 .A78 .bin .BIN .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>atari7800</platform> <theme>atari7800</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">prosystem</core> </cores> </emulator> </emulators> </system> <system> <name>atari800</name> <fullname>Atari 800</fullname> <manufacturer>Atari</manufacturer> <release>1979</release> <hardware>console</hardware> <path>/storage/roms/atari800</path> <extension>.rom .ROM .xfd .XFD .atr .ATR .atx .ATX .cdm .CDM .cas .CAS .bin .BIN .a52 .A52 .xex .XEX .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>atari800</platform> <theme>atari800</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">atari800</core> </cores> </emulator> </emulators> </system> <system> <name>atarilynx</name> <fullname>Atari Lynx</fullname> <manufacturer>Atari</manufacturer> <release>1989</release> <hardware>portable</hardware> <path>/storage/roms/atarilynx</path> <extension>.lnx .LNX .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>atarilynx</platform> <theme>atarilynx</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">handy</core> </cores> </emulator> </emulators> </system> <system> <name>atarist</name> <fullname>Atari ST</fullname> <manufacturer>Atari</manufacturer> <release>1985</release> <hardware>computer</hardware> <path>/storage/roms/atarist</path> <extension>.st .ST .msa .MSA .stx .STX .dim .DIM .ipf .IPF .m3u .M3U .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>atarist</platform> <theme>atarist</theme> <emulators> <emulator name="HATARISA"> <cores> <core>HATARISA</core> </cores> </emulator> <emulator name="libretro"> <cores> <core default="true">hatari</core> </cores> </emulator> </emulators> </system> <system> <name>atomiswave</name> <fullname>Atomiswave</fullname> <manufacturer>Sammy</manufacturer> <release>2003</release> <hardware>arcade</hardware> <path>/storage/roms/atomiswave</path> <extension>.lst .LST .bin .BIN .dat .DAT .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>atomiswave</platform> <theme>atomiswave</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">flycast</core> </cores> </emulator> </emulators> </system> <system> <name>wonderswan</name> <fullname>Bandai Wonderswan</fullname> <manufacturer>Bandai</manufacturer> <release>1999</release> <hardware>portable</hardware> <path>/storage/roms/wonderswan</path> <extension>.ws .WS .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>wonderswan</platform> <theme>wonderswan</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mednafen_wswan</core> </cores> </emulator> </emulators> </system> <system> <name>wonderswancolor</name> <fullname>Bandai Wonderswan Color</fullname> <manufacturer>Bandai</manufacturer> <release>2000</release> <hardware>portable</hardware> <path>/storage/roms/wonderswancolor</path> <extension>.wsc .WSC .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>wonderswancolor</platform> <theme>wonderswancolor</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mednafen_wswan</core> </cores> </emulator> </emulators> </system> <system> <name>cps1</name> <fullname>Capcom PlaySystem 1</fullname> <manufacturer>Capcom</manufacturer> <release>1988</release> <hardware>arcade</hardware> <path>/storage/roms/cps1</path> <extension>.zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>arcade</platform> <theme>cps1</theme> <emulators> <emulator name="AdvanceMame"> <cores> <core>AdvanceMame</core> </cores> </emulator> <emulator name="libretro"> <cores> <core>mame2003_plus</core> <core>mame2010</core> <core default="true">fbneo</core> <core>fbalpha2012</core> <core>mba_mini</core> </cores> </emulator> </emulators> </system> <system> <name>cps2</name> <fullname>Capcom PlaySystem 2</fullname> <manufacturer>Capcom</manufacturer> <release>1993</release> <hardware>arcade</hardware> <path>/storage/roms/cps2</path> <extension>.zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>arcade</platform> <theme>cps2</theme> <emulators> <emulator name="AdvanceMame"> <cores> <core>AdvanceMame</core> </cores> </emulator> <emulator name="libretro"> <cores> <core>mame2003_plus</core> <core>mame2010</core> <core default="true">fbneo</core> <core>fbalpha2012</core> <core>mba_mini</core> </cores> </emulator> </emulators> </system> <system> <name>cps3</name> <fullname>Capcom PlaySystem 3</fullname> <manufacturer>Capcom</manufacturer> <release>1996</release> <hardware>arcade</hardware> <path>/storage/roms/cps3</path> <extension>.zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>arcade</platform> <theme>cps3</theme> <emulators> <emulator name="AdvanceMame"> <cores> <core>AdvanceMame</core> </cores> </emulator> <emulator name="libretro"> <cores> <core>mame2003_plus</core> <core>mame2010</core> <core default="true">fbneo</core> <core>fbalpha2012</core> <core>mba_mini</core> </cores> </emulator> </emulators> </system> <system> <name>colecovision</name> <fullname>ColecoVision</fullname> <manufacturer>Coleco</manufacturer> <release>1982</release> <hardware>console</hardware> <path>/storage/roms/coleco</path> <extension>.bin .BIN .col .COL .rom .ROM .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>colecovision</platform> <theme>colecovision</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">bluemsx</core> </cores> </emulator> </emulators> </system> <system> <name>c128</name> <fullname>Commodore 128</fullname> <manufacturer>Commodore</manufacturer> <release>1985</release> <hardware>computer</hardware> <path>/storage/roms/c128</path> <extension>.d64 .g64 .t64 .x64 .zip .D64 .G64 .T64 .X64 .ZIP</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>c128</platform> <theme>c128</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">vice_x128</core> </cores> </emulator> </emulators> </system> <system> <name>c64</name> <fullname>Commodore 64</fullname> <manufacturer>Commodore</manufacturer> <release>1982</release> <hardware>computer</hardware> <path>/storage/roms/c64</path> <extension>.d64 .D64 .zip .ZIP .7z .7Z .t64 .T64</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>c64</platform> <theme>c64</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">vice_x64</core> </cores> </emulator> </emulators> </system> <system> <name>amiga</name> <fullname>Commodore Amiga</fullname> <manufacturer>Commodore</manufacturer> <release>1985</release> <hardware>computer</hardware> <path>/storage/roms/amiga</path> <extension>.zip .ZIP .adf .ADF .uae .UAE .ipf .IPF .dms .DMS .adz .ADZ .lha .LHA</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>amiga</platform> <theme>amiga</theme> <emulators> <emulator name="AMIBERRY"> <cores> <core default="true">AMIBERRY</core> </cores> </emulator> <emulator name="libretro"> <cores> <core>puae</core> <core>uae4arm</core> </cores> </emulator> </emulators> </system> <system> <name>amigacd32</name> <fullname>Commodore Amiga CD 32</fullname> <manufacturer>Commodore</manufacturer> <release>1994</release> <hardware>console</hardware> <path>/storage/roms/amigacd32</path> <extension>.iso .ISO .cue .CUE .zip .ZIP .lha .LHA</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>amigacd32</platform> <theme>amigacd32</theme> <emulators> <emulator name="AMIBERRY"> <cores> <core default="true">AMIBERRY</core> </cores> </emulator> <emulator name="libretro"> <cores> <core>puae</core> <core>uae4arm</core> </cores> </emulator> </emulators> </system> <system> <name>c16</name> <fullname>Commodore Plus4</fullname> <manufacturer>Commodore</manufacturer> <release>1984</release> <hardware>computer</hardware> <path>/storage/roms/c16</path> <extension>.d64 .g64 .t64 .x64 .zip .D64 .G64 .T64 .X64 .ZIP</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>c16</platform> <theme>c16</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">vice_xplus4</core> </cores> </emulator> </emulators> </system> <system> <name>vic20</name> <fullname>Commodore Vic 20</fullname> <manufacturer>Commodore</manufacturer> <release>1980</release> <hardware>computer</hardware> <path>/storage/roms/vic20</path> <extension>.d64 .g64 .t64 .x64 .zip .D64 .G64 .T64 .X64 .ZIP</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>vic20</platform> <theme>vic20</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">vice_xvic</core> </cores> </emulator> </emulators> </system> <system> <name>pc</name> <fullname>DOS x86</fullname> <manufacturer>Microsoft</manufacturer> <release>1981</release> <hardware>computer</hardware> <path>/storage/roms/pc</path> <extension>.com .COM .sh .SH .bat .BAT .exe .EXE</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>pc</platform> <theme>pc</theme> <emulators> <emulator name="DOSBOXSDL2"> <cores> <core default="true">DOSBOXSDL2</core> </cores> </emulator> <emulator name="libretro"> <cores> <core>dosbox_svn</core> </cores> </emulator> </emulators> </system> <system> <name>pc-9800</name> <fullname>NEC PC-9800</fullname> <manufacturer>NEC</manufacturer> <release>1983</release> <hardware>computer</hardware> <path>/storage/roms/pc98</path> <extension>.d98 .zip .98d .fdi .fdd .2hd .tfd .d88 .88d .hdm .xdf .dup .hdi .thd .nhd .hdd .hdn </extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>pc98</platform> <theme>pc98</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">np2kai</core> <core>nekop2</core> </cores> </emulator> </emulators> </system> <system> <name>daphne</name> <fullname>Daphne</fullname> <manufacturer>Arcade</manufacturer> <release>1982</release> <hardware>arcade</hardware> <path>/storage/roms/daphne</path> <extension>.daphne .DAPHNE</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>daphne</platform> <theme>daphne</theme> <emulators> <emulator name="HYPSEUS"> <cores> <core default="true">HYPSEUS</core> </cores> </emulator> <emulator name="libretro"> <cores> <core>daphne</core> </cores> </emulator> </emulators> </system> <system> <name>fbn</name> <fullname>Final Burn Neo</fullname> <manufacturer>Arcade</manufacturer> <hardware>arcade</hardware> <path>/storage/roms/fbneo</path> <extension>.7z .zip .7Z .ZIP</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>arcade</platform> <theme>fbn</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">fbneo</core> <core>mame2003</core> <core>fbalpha2012</core> </cores> </emulator> </emulators> </system> <system> <name>msx</name> <fullname>MSX</fullname> <manufacturer>Microsoft</manufacturer> <release>1983</release> <hardware>computer</hardware> <path>/storage/roms/msx</path> <extension>.dsk .DSK .mx1 .MX1 .mx2 .MX2 .rom .ROM .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>msx</platform> <theme>msx</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">bluemsx</core> </cores> </emulator> </emulators> </system> <system> <name>msx2</name> <fullname>MSX2</fullname> <manufacturer>Microsoft</manufacturer> <release>1985</release> <hardware>computer</hardware> <path>/storage/roms/msx2</path> <extension>.dsk .DSK .mx1 .MX1 .mx2 .MX2 .rom .ROM .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>msx</platform> <theme>msx2</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">bluemsx</core> </cores> </emulator> </emulators> </system> <system> <name>odyssey2</name> <fullname>Magnavox Odyssey 2</fullname> <manufacturer>Magnavox - Philips</manufacturer> <release>1979</release> <hardware>console</hardware> <path>/storage/roms/odyssey</path> <extension>.bin .BIN .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>odyssey2</platform> <theme>odyssey2</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">o2em</core> </cores> </emulator> </emulators> </system> <system> <name>intellivision</name> <fullname>Mattel Intellivision</fullname> <manufacturer>Mattel</manufacturer> <release>1979</release> <hardware>console</hardware> <path>/storage/roms/intellivision</path> <extension>.int .INT .bin .BIN .rom .ROM .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>intellivision</platform> <theme>intellivision</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">freeintv</core> </cores> </emulator> </emulators> </system> <system> <name>mplayer</name> <fullname>Media Player</fullname> <manufacturer>EmuELEC</manufacturer> <release>2020</release> <path>/storage/roms/mplayer</path> <extension>.mp4 .MP4 .mkv .MKV .avi .AVI .mov .MOV .wmv .WMV .m3u .M3U .mpg .MPG .ytb .YTB .twi .TWI .sh .SH</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>mplayer</platform> <theme>mplayer</theme> <emulators> <emulator name="mpv"> <cores> <core>mpv</core> </cores> </emulator> <emulator name="ffplay"> <cores> <core>ffplay</core> </cores> </emulator> </emulators> </system> <system> <name>vectrex</name> <fullname>Milton Bradley Vectrex</fullname> <manufacturer>Milton Bradley</manufacturer> <release>1982</release> <hardware>console</hardware> <path>/storage/roms/vectrex</path> <extension>.bin .BIN .gam .GAM .vec .VEC .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>vectrex</platform> <theme>vectrex</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">vecx</core> </cores> </emulator> </emulators> </system> <system> <name>pcengine</name> <fullname>NEC PC-Engine</fullname> <manufacturer>NEC</manufacturer> <release>1987</release> <hardware>console</hardware> <path>/storage/roms/pcengine</path> <extension>.pce .PCE .bin .BIN .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>pcengine</platform> <theme>pcengine</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mednafen_pce_fast</core> <core>mednafen_supergrafx</core> </cores> </emulator> </emulators> </system> <system> <name>pcenginecd</name> <fullname>NEC PC-Engine CD</fullname> <manufacturer>NEC</manufacturer> <release>1988</release> <hardware>console</hardware> <path>/storage/roms/pcenginecd</path> <extension>.pce .PCE .cue .CUE .ccd .CCD .iso .ISO .img .IMG .bin .BIN .chd .CHD .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>pcenginecd</platform> <theme>pce-cd</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mednafen_pce_fast</core> <core>mednafen_supergrafx</core> </cores> </emulator> </emulators> </system> <system> <name>pcfx</name> <fullname>NEC PC-FX</fullname> <manufacturer>NEC</manufacturer> <release>1994</release> <hardware>console</hardware> <path>/storage/roms/pcfx</path> <extension>.chd .CHD .zip .ZIP .cue .CUE .ccd .CCD .toc .TOC</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>pcfx</platform> <theme>pcfx</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mednafen_pcfx</core> </cores> </emulator> </emulators> </system> <system> <name>supergrafx</name> <fullname>NEC Super Grafx</fullname> <manufacturer>NEC</manufacturer> <release>1989</release> <hardware>console</hardware> <path>/storage/roms/sgfx</path> <extension>.pce .PCE .sgx .SGX .cue .CUE .ccd .CCD .chd .CHD .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>supergrafx</platform> <theme>supergrafx</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mednafen_supergrafx</core> <core>mednafen_pce_fast</core> </cores> </emulator> </emulators> </system> <system> <name>tg16</name> <fullname>NEC TurboGrafx 16</fullname> <manufacturer>NEC</manufacturer> <release>1989</release> <hardware>console</hardware> <path>/storage/roms/tg16</path> <extension>.pce .PCE .bin .BIN .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>pcengine</platform> <theme>tg16</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mednafen_pce_fast</core> <core>mednafen_supergrafx</core> </cores> </emulator> </emulators> </system> <system> <name>tg16cd</name> <fullname>NEC TurboGrafx 16-CD</fullname> <manufacturer>NEC</manufacturer> <release>1989</release> <hardware>console</hardware> <path>/storage/roms/tg16cd</path> <extension>.pce .PCE .cue .CUE .ccd .CCD .iso .ISO .img .IMG .bin .BIN .chd .CHD .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>pcenginecd</platform> <theme>tg16cd</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mednafen_pce_fast</core> <core>mednafen_supergrafx</core> </cores> </emulator> </emulators> </system> <system> <name>n64</name> <fullname>Nintendo 64</fullname> <manufacturer>Nintendo</manufacturer> <release>1996</release> <hardware>console</hardware> <path>/storage/roms/n64</path> <extension>.z64 .Z64 .n64 .N64 .v64 .V64 .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>n64</platform> <theme>n64</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mupen64plus_next</core> <core>mupen64plus</core> <core>parallel_n64</core> </cores> </emulator> </emulators> </system> <system> <name>nes</name> <fullname>Nintendo Entertainment System</fullname> <manufacturer>Nintendo</manufacturer> <release>1985</release> <hardware>console</hardware> <path>/storage/roms/nes</path> <extension>.nes .NES .unif .UNIF .unf .UNF .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>nes</platform> <theme>nes</theme> <emulators> <emulator name="libretro"> <cores> <core>fceumm</core> <core default="true">nestopia</core> </cores> </emulator> </emulators> </system> <system> <name>nesh</name> <fullname>Nintendo Entertainment System Hacks</fullname> <manufacturer>Nintendo</manufacturer> <release>1985</release> <hardware>console</hardware> <path>/storage/roms/nesh</path> <extension>.nes .NES .unif .UNIF .unf .UNF .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>nes</platform> <theme>nesh</theme> <emulators> <emulator name="libretro"> <cores> <core>fceumm</core> <core default="true">nestopia</core> </cores> </emulator> </emulators> </system> <system> <name>famicom</name> <fullname>Nintendo Famicom</fullname> <manufacturer>Nintendo</manufacturer> <release>1983</release> <hardware>console</hardware> <path>/storage/roms/famicom</path> <extension>.nes .NES .unif .UNIF .unf .UNF .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>famicom</platform> <theme>famicom</theme> <emulators> <emulator name="libretro"> <cores> <core>fceumm</core> <core default="true">nestopia</core> </cores> </emulator> </emulators> </system> <system> <name>fds</name> <fullname>Nintendo Famicom Disk System</fullname> <manufacturer>Nintendo</manufacturer> <release>1986</release> <hardware>console</hardware> <path>/storage/roms/fds</path> <extension>.fds .FDS .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>fds</platform> <theme>fds</theme> <emulators> <emulator name="libretro"> <cores> <core>fceumm</core> <core default="true">nestopia</core> </cores> </emulator> </emulators> </system> <system> <name>gb</name> <fullname>Nintendo Game Boy</fullname> <manufacturer>Nintendo</manufacturer> <release>1989</release> <hardware>portable</hardware> <path>/storage/roms/gb</path> <extension>.gb .GB .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>gb</platform> <theme>gb</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">gambatte</core> <core>gearboy</core> <core>tgbdual</core> <core>mgba</core> <core>vbam</core> <core>vba_next</core> </cores> </emulator> </emulators> </system> <system> <name>gba</name> <fullname>Nintendo Game Boy Advance</fullname> <manufacturer>Nintendo</manufacturer> <release>2001</release> <hardware>portable</hardware> <path>/storage/roms/gba</path> <extension>.gba .GBA .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>gba</platform> <theme>gba</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mgba</core> <core>gpsp</core> <core>vbam</core> <core>vba_next</core> </cores> </emulator> </emulators> </system> <system> <name>gbah</name> <fullname>Nintendo Game Boy Advance hacks</fullname> <manufacturer>Nintendo</manufacturer> <release>2001</release> <hardware>portable</hardware> <path>/storage/roms/gbah</path> <extension>.gba .GBA .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>gba</platform> <theme>gbah</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mgba</core> <core>gpsp</core> <core>vbam</core> <core>vba_next</core> </cores> </emulator> </emulators> </system> <system> <name>gbc</name> <fullname>Nintendo Game Boy Color</fullname> <manufacturer>Nintendo</manufacturer> <release>1998</release> <hardware>portable</hardware> <path>/storage/roms/gbc</path> <extension>.gb .GB .gbc .GBC .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>gbc</platform> <theme>gbc</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">gambatte</core> <core>gearboy</core> <core>tgbdual</core> <core>mgba</core> <core>vbam</core> <core>vba_next</core> </cores> </emulator> </emulators> </system> <system> <name>gbch</name> <fullname>Nintendo Game Boy Color Hacks</fullname> <manufacturer>Nintendo</manufacturer> <release>1998</release> <hardware>portable</hardware> <path>/storage/roms/gbch</path> <extension>.gb .GB .gbc .GBC .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>gbc</platform> <theme>gbch</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">gambatte</core> <core>gearboy</core> <core>tgbdual</core> <core>mgba</core> <core>vbam</core> <core>vba_next</core> </cores> </emulator> </emulators> </system> <system> <name>gbh</name> <fullname>Nintendo Game Boy Hacks</fullname> <manufacturer>Nintendo</manufacturer> <release>1989</release> <hardware>portable</hardware> <path>/storage/roms/gbh</path> <extension>.gb .GB .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>gb</platform> <theme>gbh</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">gambatte</core> <core>gearboy</core> <core>tgbdual</core> <core>mgba</core> <core>vbam</core> <core>vba_next</core> </cores> </emulator> </emulators> </system> <system> <name>gameandwatch</name> <fullname>Nintendo Game and Watch</fullname> <manufacturer>Nintendo</manufacturer> <release>1980</release> <hardware>portable</hardware> <path>/storage/roms/gameandwatch</path> <extension>.mgw .MGW .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>gameandwatch</platform> <theme>gameandwatch</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">gw</core> </cores> </emulator> </emulators> </system> <system> <name>sfc</name> <fullname>Nintendo Super Famicom</fullname> <manufacturer>Nintendo</manufacturer> <release>1990</release> <hardware>console</hardware> <path>/storage/roms/sfc</path> <extension>.smc .SMC .fig .FIG .bs .BS .st .ST .sfc .SFC .gd3 .GD3 .gd7 .GD7 .dx2 .DX2 .bsx .BSX .swc .SWC .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>sfc</platform> <theme>sfc</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">snes9x</core> <core>snes9x2010</core> <core>snes9x2002</core> <core>snes9x2005_plus</core> </cores> </emulator> </emulators> </system> <system> <name>snes</name> <fullname>Nintendo Super Nintendo</fullname> <manufacturer>Nintendo</manufacturer> <release>1991</release> <hardware>console</hardware> <path>/storage/roms/snes</path> <extension>.smc .SMC .fig .FIG .bs .BS .st .ST .sfc .SFC .gd3 .GD3 .gd7 .GD7 .dx2 .DX2 .bsx .BSX .swc .SWC .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>snes</platform> <theme>snes</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">snes9x</core> <core>snes9x2010</core> <core>snes9x2002</core> <core>snes9x2005_plus</core> </cores> </emulator> </emulators> </system> <system> <name>snesh</name> <fullname>Nintendo Super Nintendo Hacks</fullname> <manufacturer>Nintendo</manufacturer> <release>1991</release> <hardware>console</hardware> <path>/storage/roms/snesh</path> <extension>.smc .SMC .fig .FIG .bs .BS .st .ST .sfc .SFC .gd3 .GD3 .gd7 .GD7 .dx2 .DX2 .bsx .BSX .swc .SWC .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>snes</platform> <theme>snesh</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">snes9x</core> <core>snes9x2010</core> <core>snes9x2002</core> <core>snes9x2005_plus</core> </cores> </emulator> </emulators> </system> <system> <name>snesmsu1</name> <fullname>Nintendo Super Nintendo MSU1</fullname> <manufacturer>byuu</manufacturer> <release>2012</release> <hardware>console</hardware> <path>/storage/roms/snesmsu1</path> <extension>.smc .SMC .fig .FIG .bs .BS .st .ST .sfc .SFC .gd3 .GD3 .gd7 .GD7 .dx2 .DX2 .bsx .BSX .swc .SWC .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>snes</platform> <theme>snesmsu1</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">snes9x</core> </cores> </emulator> </emulators> </system> <system> <name>virtualboy</name> <fullname>Nintendo Virtual Boy</fullname> <manufacturer>Nintendo</manufacturer> <release>1995</release> <hardware>console</hardware> <path>/storage/roms/virtualboy</path> <extension>.vb .VB .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>virtualboy</platform> <theme>virtualboy</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mednafen_vb</core> </cores> </emulator> </emulators> </system> <system> <name>pokemini</name> <fullname>Pokemon Mini</fullname> <manufacturer>Nintendo</manufacturer> <release>2001</release> <hardware>portable</hardware> <path>/storage/roms/pokemini</path> <extension>.min .MIN .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>pokemini</platform> <theme>pokemini</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">pokemini</core> </cores> </emulator> </emulators> </system> <system> <name>openbor</name> <fullname>OpenBOR</fullname> <manufacturer>Ports</manufacturer> <release>2008</release> <hardware>port</hardware> <path>/storage/roms/openbor</path> <extension>.pak .PAK</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>openbor</platform> <theme>openbor</theme> <emulators> <emulator name="OPENBOR"> <cores> <core default="true">OPENBOR</core> </cores> </emulator> </emulators> </system> <system> <name>videopac</name> <fullname>Philips VideoPac</fullname> <manufacturer>Magnavox - Philips</manufacturer> <release>1978</release> <hardware>console</hardware> <path>/storage/roms/videopac</path> <extension>.bin .BIN</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>videopac</platform> <theme>videopac</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">o2em</core> </cores> </emulator> </emulators> </system> <system> <name>ports</name> <fullname>Ports</fullname> <manufacturer>Ports</manufacturer> <release>Varies</release> <hardware>port</hardware> <path>/storage/.config/emuelec/ports</path> <extension>.sh .SH</extension> <command>/usr/bin/bash %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>ports</platform> <theme>ports</theme> </system> <system> <name>residualvm</name> <fullname>ResidualVM</fullname> <manufacturer>LucasArts</manufacturer> <release>1998</release> <hardware>computer</hardware> <path>/storage/.config/residualvm/games</path> <extension>.sh .SH .rvm .RVM .residualvm</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>pc</platform> <theme>residualvm</theme> <emulators> <emulator name="RESIDUALVM"> <cores> <core default="true">RESIDUALVM</core> </cores> </emulator> </emulators> </system> <system> <name>neogeo</name> <fullname>SNK Neo-Geo</fullname> <manufacturer>SNK</manufacturer> <release>1990</release> <hardware>console</hardware> <path>/storage/roms/neogeo</path> <extension>.7z .7Z .zip .ZIP</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>neogeo</platform> <theme>neogeo</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">fbneo</core> <core>mame2003</core> <core>fbalpha2012</core> </cores> </emulator> </emulators> </system> <system> <name>neocd</name> <fullname>SNK Neo-Geo CD</fullname> <manufacturer>SNK</manufacturer> <release>1990</release> <hardware>console</hardware> <path>/storage/roms/neocd</path> <extension>.cue .CUE .iso .ISO .chd .CHD .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>neogeocd</platform> <theme>neogeocd</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">neocd</core> <core>fbneo</core> </cores> </emulator> </emulators> </system> <system> <name>ngp</name> <fullname>SNK Neo-Geo Pocket</fullname> <manufacturer>SNK</manufacturer> <release>1998</release> <hardware>portable</hardware> <path>/storage/roms/ngp</path> <extension>.ngp .NGP .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>ngp</platform> <theme>ngp</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mednafen_ngp</core> </cores> </emulator> </emulators> </system> <system> <name>ngpc</name> <fullname>SNK Neo-Geo Pocket Color</fullname> <manufacturer>SNK</manufacturer> <release>1999</release> <hardware>portable</hardware> <path>/storage/roms/ngpc</path> <extension>.ngc .NGC .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>ngpc</platform> <theme>ngpc</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">mednafen_ngp</core> </cores> </emulator> </emulators> </system> <system> <name>scummvm</name> <fullname>ScummVM</fullname> <manufacturer>LucasArts</manufacturer> <release>1987</release> <hardware>computer</hardware> <path>/storage/.config/scummvm/games</path> <extension>.sh .SH .svm .SVM .scummvm</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>pc</platform> <theme>scummvm</theme> <emulators> <emulator name="SCUMMVMSA"> <cores> <core default="true">SCUMMVMSA</core> </cores> </emulator> <emulator name="libretro"> <cores> <core>scummvm</core> </cores> </emulator> </emulators> </system> <system> <name>sega32x</name> <fullname>Sega 32X</fullname> <manufacturer>Sega</manufacturer> <release>1991</release> <hardware>console</hardware> <path>/storage/roms/sega32x</path> <extension>.32x .32X .smd .SMD .bin .BIN .md .MD .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>sega32x</platform> <theme>sega32x</theme> <emulators> <emulator name="libretro"> <cores> <core>picodrive</core> </cores> </emulator> </emulators> </system> <system> <name>segacd</name> <fullname>Sega CD</fullname> <manufacturer>Sega</manufacturer> <release>1991</release> <hardware>console</hardware> <path>/storage/roms/segacd</path> <extension>.chd .CHD .cue .CUE .iso .ISO .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>segacd</platform> <theme>segacd</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">genesis_plus_gx</core> <core>picodrive</core> </cores> </emulator> </emulators> </system> <system> <name>dreamcast</name> <fullname>Sega Dreamcast</fullname> <manufacturer>Sega</manufacturer> <release>1998</release> <hardware>console</hardware> <path>/storage/roms/dreamcast</path> <extension>.cdi .CDI .gdi .GDI .chd .CHD .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>dreamcast</platform> <theme>dreamcast</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">flycast</core> </cores> </emulator> <emulator name="REICAST"> <cores> <core>REICASTSA</core> <core>REICASTSA_OLD</core> </cores> </emulator> </emulators> </system> <system> <name>gamegear</name> <fullname>Sega Game Gear</fullname> <manufacturer>Sega</manufacturer> <release>1990</release> <hardware>portable</hardware> <path>/storage/roms/gamegear</path> <extension>.bin .BIN .gg .GG .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>gamegear</platform> <theme>gamegear</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">gearsystem</core> <core>genesis_plus_gx</core> <core>picodrive</core> </cores> </emulator> </emulators> </system> <system> <name>ggh</name> <fullname>Sega Game Gear Hacks</fullname> <manufacturer>Sega</manufacturer> <release>1990</release> <hardware>portable</hardware> <path>/storage/roms/gamegearh</path> <extension>.bin .BIN .gg .GG .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>gamegear</platform> <theme>ggh</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">gearsystem</core> <core>genesis_plus_gx</core> <core>picodrive</core> </cores> </emulator> </emulators> </system> <system> <name>genesis</name> <fullname>Sega Genesis</fullname> <manufacturer>Sega</manufacturer> <release>1989</release> <hardware>console</hardware> <path>/storage/roms/genesis</path> <extension>.bin .BIN .gen .GEN .md .MD .sg .SG .smd .SMD .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>genesis</platform> <theme>genesis</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">genesis_plus_gx</core> <core>picodrive</core> </cores> </emulator> </emulators> </system> <system> <name>genh</name> <fullname>Sega Genesis Hacks</fullname> <manufacturer>Sega</manufacturer> <release>1989</release> <hardware>console</hardware> <path>/storage/roms/genh</path> <extension>.bin .BIN .gen .GEN .md .MD .sg .SG .smd .SMD .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>genesis</platform> <theme>genh</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">genesis_plus_gx</core> <core>picodrive</core> </cores> </emulator> </emulators> </system> <system> <name>mastersystem</name> <fullname>Sega Master System</fullname> <manufacturer>Sega</manufacturer> <release>1985</release> <hardware>console</hardware> <path>/storage/roms/mastersystem</path> <extension>.bin .BIN .sms .SMS .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>mastersystem</platform> <theme>mastersystem</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">gearsystem</core> <core>genesis_plus_gx</core> <core>picodrive</core> </cores> </emulator> </emulators> </system> <system> <name>megadrive</name> <fullname>Sega Mega Drive</fullname> <manufacturer>Sega</manufacturer> <release>1990</release> <hardware>console</hardware> <path>/storage/roms/megadrive</path> <extension>.bin .BIN .gen .GEN .md .MD .sg .SG .smd .SMD .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>megadrive</platform> <theme>megadrive</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">genesis_plus_gx</core> <core>picodrive</core> </cores> </emulator> </emulators> </system> <system> <name>megadrive-japan</name> <fullname>Sega Mega Drive Japan</fullname> <manufacturer>Sega</manufacturer> <release>1988</release> <hardware>console</hardware> <path>/storage/roms/megadrive-japan</path> <extension>.bin .BIN .gen .GEN .md .MD .sg .SG .smd .SMD .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>megadrive</platform> <theme>megadrive-japan</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">genesis_plus_gx</core> <core>picodrive</core> </cores> </emulator> </emulators> </system> <system> <name>naomi</name> <fullname>Sega Naomi</fullname> <manufacturer>Sega</manufacturer> <release>1998</release> <hardware>arcade</hardware> <path>/storage/roms/naomi</path> <extension>.lst .LST .bin .BIN .dat .DAT .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>naomi</platform> <theme>naomi</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">flycast</core> </cores> </emulator> </emulators> </system> <system> <name>sc-3000</name> <fullname>Sega SC-3000</fullname> <manufacturer>Sega</manufacturer> <release>1983</release> <hardware>computer</hardware> <path>/storage/roms/sc-3000</path> <extension>.bin .BIN .sg .SG .zip .ZIP .7z .7Z</extension>-P%SYSTEM% <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>sc-3000</platform> <theme>sc-3000</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">bluemsx</core> </cores> </emulator> </emulators> </system> <system> <name>sg-1000</name> <fullname>Sega SG-1000</fullname> <manufacturer>Sega</manufacturer> <release>1983</release> <hardware>console</hardware> <path>/storage/roms/sg-1000</path> <extension>.bin .BIN .sg .SG .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>sg-1000</platform> <theme>sg-1000</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">gearsystem</core> <core>genesis_plus_gx</core> <core>picodrive</core> </cores> </emulator> </emulators> </system> <system> <name>setup</name> <fullname>Setup</fullname> <manufacturer>EmuELEC</manufacturer> <release>2017</release> <hardware>Amlogic</hardware> <path>/emuelec/scripts/modules</path> <extension>.sh</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>setup</platform> <theme>setup</theme> </system> <system> <name>x68000</name> <fullname>Sharp X68000</fullname> <manufacturer>Sharp</manufacturer> <release>1987</release> <hardware>computer</hardware> <path>/storage/roms/x68000</path> <extension>.dim .DIM .img .IMG .d88 .D88 .88d .88D .hdm .HDM .dup .DUP .2hd .2HD .xdf .XDF .hdf .HDF .cmd .CMD .m3u .M3U .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>x68000</platform> <theme>x68000</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">px68k</core> </cores> </emulator> </emulators> </system> <system> <name>zxspectrum</name> <fullname>Sinclair ZX Spectrum</fullname> <manufacturer>Sinclair</manufacturer> <release>1982</release> <hardware>computer</hardware> <path>/storage/roms/zxspectrum</path> <extension>.tzx .TZX .tap .TAP .z80 .Z80 .rzx .RZX .scl .SCL .trd .TRD .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>zxspectrum</platform> <theme>zxspectrum</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">fuse</core> </cores> </emulator> </emulators> </system> <system> <name>zx81</name> <fullname>Sinclair ZX81</fullname> <manufacturer>Sinclair</manufacturer> <release>1981</release> <hardware>computer</hardware> <path>/storage/roms/zx81</path> <extension>.tzx .TZX .p .P .zip .ZIP .7z .7Z</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>zx81</platform> <theme>zx81</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">81</core> </cores> </emulator> </emulators> </system> <system> <name>psx</name> <fullname>Sony Playstation</fullname> <manufacturer>Sony</manufacturer> <release>1994</release> <hardware>console</hardware> <path>/storage/roms/psx</path> <extension>.bin .BIN .cue .CUE .img .IMG .mdf .MDF .pbp .PBP .toc .TOC .cbn .CBN .m3u .M3U .ccd .CCD .chd .CHD .zip .ZIP .7z .7Z .iso .ISO</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>psx</platform> <theme>psx</theme> <emulators> <emulator name="libretro"> <cores> <core default="true">pcsx_rearmed</core> </cores> </emulator> </emulators> </system> <system> <name>psp</name> <fullname>Sony Playstation Portable</fullname> <manufacturer>Sony</manufacturer> <release>2004</release> <hardware>portable</hardware> <path>/storage/roms/psp</path> <extension>.iso .ISO .cso .CSO .pbp .PBP</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>psp</platform> <theme>psp</theme> <emulators> <emulator name="PPSSPPSDL"> <cores> <core default="true">PPSSPPSDL</core> </cores> </emulator> <emulator name="libretro"> <cores> <core>ppsspp</core> </cores> </emulator> </emulators> </system> <system> <name>pspminis</name> <fullname>Sony Playstation Portable Minis</fullname> <manufacturer>Sony</manufacturer> <release>2004</release> <hardware>portable</hardware> <path>/storage/roms/pspminis</path> <extension>.iso .ISO .cso .CSO .pbp .PBP</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>psp</platform> <theme>pspminis</theme> <emulators> <emulator name="PPSSPPSDL"> <cores> <core default="true">PPSSPPSDL</core> </cores> </emulator> <emulator name="libretro"> <cores> <core>ppsspp</core> </cores> </emulator> </emulators> </system> <system> <name>uzebox</name> <fullname>uzebox</fullname> <manufacturer>belogic</manufacturer> <release>2008</release> <hardware>console</hardware> <path>/storage/roms/uzebox</path> <extension>.uze .UZE .hex .HEX</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>uzebox</platform> <theme>uzebox</theme> <emulators> <emulator name="libretro"> <cores> <core>uzebox</core> </cores> </emulator> </emulators> </system> <system> <name>pico8</name> <fullname>PICO-8 fantasy console</fullname> <manufacturer>Lexaloffle</manufacturer> <release>2015</release> <hardware>console</hardware> <path>/storage/roms/pico-8</path> <extension>.p8 .P8 .png .PNG</extension> <command>/emuelec/scripts/emuelecRunEmu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers="%CONTROLLERSCONFIG%"</command> <platform>pico8</platform> <theme>pico8</theme> <emulators> <emulator name="Pico-8"> <cores> <core default="true">Pico-8</core> </cores> </emulator> </emulators> </system> </systemList> 帮我解释一下这个文件设置了什么
最新发布
05-31
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值