From 4654cb3a1607e949fc2d8691272c7d74564af8d9 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Sun, 9 Jan 2022 16:11:12 -0500 Subject: [PATCH] wasm4: Add WASM-4 .info file [WASM-4](https://github.com/aduros/wasm4/) now has full libretro integration. Seems like a good idea to have a .info file to allow loading `.wasm` files directly. --- dist/info/wasm4_libretro.info | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 dist/info/wasm4_libretro.info diff --git a/dist/info/wasm4_libretro.info b/dist/info/wasm4_libretro.info new file mode 100644 index 00000000..448263d6 --- /dev/null +++ b/dist/info/wasm4_libretro.info @@ -0,0 +1,35 @@ +# Software Information +display_name = "WASM-4" +authors = "Bruno Garcia" +supported_extensions = "wasm" +corename = "WASM-4" +license = "ISC" +permissions = "" +display_version = "2.1.0" +categories = "Game engine" + +# Hardware Information +systemname = "WASM-4" +systemid = "wasm4" + +# Libretro Features +supports_no_game = "false" +savestate = "true" +savestate_features = "deterministic" +cheats = "false" +input_descriptors = "true" +memory_descriptors = "true" +libretro_saves = "true" +core_options = "false" +core_options_version = "1.0" +load_subsystem = "false" +hw_render = "false" +needs_fullpath = "false" +disk_control = "false" +database = "WASM-4" + +# BIOS / Firmware +firmware_count = 0 +notes = "(!) Homepage: https://wasm4.org" + +description = "WASM-4 is a low-level fantasy game console for building small games with WebAssembly. Game cartridges (ROMs) are small, self-contained .wasm files that can be built with any programming language that compiles to WebAssembly."