Advertisement
Guest User

hyper launcher system-config.xml example

a guest
Feb 23rd, 2016
1,314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.92 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <system name="Atari 2600">      <!-- System name -->
  3.     <info>
  4.         <release_year>1977</release_year>       <!-- System info -->
  5.         <manufacturer>Atari, Inc.</manufacturer>
  6.         <description>The Atari 2600, (or Atari VCS before 1982) is a home video game console released on September 11, 1977 by Atari, Inc. It is credited with popularizing the use of microprocessor-based hardware and ROM cartridges containing game code, a format first used with the Fairchild Channel F video game console in 1976. This format contrasts with the older model of having non-microprocessor dedicated hardware, which could only play the games which were physically built into the unit.</description>
  7.     </info>
  8.     <config>
  9.         <rom_path>C:\emulation\roms\Atari - 2600</rom_path>     <!-- Path to ROM files -->
  10.         <rom_extensions>a26 bin zip 7z</rom_extensions>     <!-- ROM extensions to use, seperated by a space. Leave blank to use first file matching ROM filename -->
  11.         <launcher_script>rocketlauncher.bat</launcher_script>       <!-- Launcher script to use for this system, needs to be executable by your system -->
  12.     </config>
  13.     <artwork>
  14.         <base_path>C:\emulation\artwork\Atari_2600</base_path>      <!-- Artwork paths to use. Leave blank to not supply artwork type -->
  15.         <icon>C:\emulation\artwork\Atari_2600\Box</icon>
  16.         <icon_fallback>C:\emulation\artwork\Atari_2600\Cart</icon_fallback>
  17.         <fanart>C:\emulation\artwork\Atari_2600\Snap</fanart>
  18.         <fanart_fallback>C:\emulation\artwork\Atari_2600\Title</fanart_fallback>
  19.         <thumb>C:\emulation\artwork\Atari_2600\Title</thumb>
  20.         <poster>C:\emulation\artwork\Atari_2600\Cart</poster>
  21.         <logo>C:\emulation\artwork\Atari_2600\Wheel</logo>
  22.         <clearart>C:\emulation\artwork\Atari_2600\CartTop</clearart>
  23.         <banner>C:\emulation\artwork\Atari_2600\Banner</banner>
  24.         <media>C:\emulation\artwork\Atari_2600\Cart</media>
  25.         <trailer>C:\emulation\artwork\Atari_2600\Video_MP4_HI_QUAL</trailer>
  26.     </artwork>
  27.     <alt_launchers>
  28.         <game name="2005 Minigame Multicart (USA) (Unl)">       <!-- Alternate launcher to use for a ROM. 'game name=' needs to be the ROMs filename with no extension -->
  29.             <launcher>kodi_retroplayer</launcher>       <!-- Launcher script to use for this ROM, needs to be executable by your system -->
  30.         </game>
  31.         <game name="A-Team, The (USA) (Proto)">
  32.             <launcher>stella.bat</launcher>
  33.         </game>
  34.     </alt_launchers>
  35.     <game_variations>
  36.         <game name="2005 Minigame Multicart (USA) (Unl)">       <!-- A ROM with variations. 'game name=' needs to be the ROMs filename with no extension. Variants need to be placed in a sub directory of the ROM path, named the same as the parent ROM filename -->
  37.             <launcher>rocketlauncher.bat</launcher>     <!-- Launcher script to use for ROM variations, needs to be executable by your system -->
  38.         </game>
  39.     </game_variations>
  40. </system>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement