Compare commits

...

5 commits

Author SHA1 Message Date
Ömercan Kömür ca74cf97f7
Merge pull request #1808 from zoltanvb/master
Add Enterprise database.
2024-05-01 23:10:56 +03:00
Ömercan Kömür cba42c0c51
Merge pull request #1810 from RobLoach/pico8-db
pico8: Add PICO-8 database for Retro8 and FAKE-08
2024-05-01 21:38:27 +03:00
Rob Loach 9b0fb0797f
pico8: Add PICO-8 database for Retro8 and FAKE-08 2024-04-29 23:47:05 -04:00
zoltanvb 0240dc880e Add building Enterprise 128 database 2024-04-18 22:20:29 +02:00
zoltanvb ed0b363a7e Add Enterprise database. 2024-04-18 22:12:12 +02:00
4 changed files with 8 additions and 5 deletions

View file

@ -154,7 +154,7 @@ supports_no_game = "true"
# Does the core have a single purpose? Does it represent one game or application, requiring predetermined support files or no external data? Used to indicate to a frontend that the core may be presented/handled independently from 'regular' cores that run a variety of content.
single_purpose = "false"
# Name of the database that the core supports (optional):
database = "Amstrad - CPC|Sinclair - ZX Spectrum"
database = "Enterprise - 128|Amstrad - CPC|Sinclair - ZX Spectrum"
# Does the core support/require support for libretro-gl or other hardware-acceleration in the frontend?
hw_render = "false"
# Which hardware-rendering APIs does the core support? Delimited by pipe characters.

View file

@ -1,5 +1,5 @@
# Software Information
display_name = "Pico-8 (FAKE-08)"
display_name = "PICO-8 (FAKE-08)"
authors = "jtothebell"
supported_extensions = "p8|png"
corename = "FAKE-08"
@ -10,10 +10,11 @@ display_version = "v0.0.2.19"
# Hardware Information
manufacturer = "Lexaloffle"
systemname = "Pico-8"
systemname = "PICO-8"
systemid = "pico8"
# Libretro Features
database = "PICO-8"
supports_no_game = "true"
savestate = "true"
savestate_features = "serialized"

View file

@ -10,12 +10,12 @@ categories = "Emulator"
# Hardware Information
manufacturer = "Lexaloffle"
systemname = "PICO8"
systemname = "PICO-8"
systemid = "pico8"
# Libretro Features
database = "PICO-8"
supports_no_game = "false"
database = "PICO8"
savestate = "false"
description = "A port of the Retro8 open-source reimplementation of the PICO-8 fantasy console to libretro. This core can load both p8 'cart' files and embedded png images, and much of the PICO-8 API is working with good performance, including basic sound and music, though it is still missing some obscure Lua extension quirks and fixed arithmetic support."

View file

@ -285,6 +285,7 @@ build_libretro_databases() {
build_libretro_database "Dinothawr" "rom.crc"
build_libretro_database "Emerson - Arcadia 2001" "rom.crc"
build_libretro_database "Entex - Adventure Vision" "rom.crc"
build_libretro_database "Enterprise - 128" "rom.crc"
build_libretro_database "Epoch - Super Cassette Vision" "rom.crc"
build_libretro_database "Fairchild - Channel F" "rom.crc"
build_libretro_database "Funtech - Super Acan" "rom.crc"
@ -379,6 +380,7 @@ build_libretro_databases() {
build_libretro_database "Vircon32" "rom.crc"
build_libretro_database "MicroW8" "rom.crc"
build_libretro_database "Spectravideo - SVI-318 - SVI-328" "rom.crc"
build_libretro_database "PICO-8" "rom.crc"
}
build_libretrodb