Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,20 @@ for row in $(jq -r '.[] | @base64' ../cores.json); do
cp EmulatorJS/data/cores/$name-thread-legacy-wasm.data $outputPath
fi

# blueMSX requires Machines/ and Databases/ at runtime. The C-BIOS
# variants in these directories use freely redistributable ROMs so
# they can be packaged directly into the core archive.
if [ "$name" = "bluemsx" ]; then
echo "Adding system files (Machines + Databases) to bluemsx core archives..."
cd "$compileStartPath/$name/system/bluemsx"
for datafile in "$compileStartPath/EmulatorJS/data/cores/bluemsx"*.data; do
if [ -f "$datafile" ]; then
7z a -t7z "$datafile" ./Machines ./Databases
fi
done
cd "$compileStartPath"
fi

# create zip file containing the core data files
cd EmulatorJS/data/cores
zip $outputPath/$name.zip $name-thread*wasm.data
Expand Down
39 changes: 39 additions & 0 deletions cores.json
Original file line number Diff line number Diff line change
Expand Up @@ -1255,5 +1255,44 @@
},
"license": "license.txt",
"repo": "https://github.com/EmulatorJS/azahar"
},
{
"name": "bluemsx",
"extensions": [
"rom", "ri", "mx1", "mx2", "dsk", "col",
"sg", "sc", "sf", "cas", "m3u"
],
"makeoptions": {
"buildpath": "./",
"makescript": "Makefile.libretro",
"arguments": [],
"initialmemory": 67108864
},
"options": {
"supportsMouse": true,
"useKeyboard": true
},
"save": "srm",
"license": "license.txt",
"repo": "https://github.com/EmulatorJS/blueMSX-libretro"
},
{
"name": "flycast",

@ethanaobrien ethanaobrien Sep 20, 2026 •

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why was flycast added?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Ethan, sorry—please remove the flycast line. I’ve been working on it since it’s now functional in WASM (except for WinCE games), and it accidentally slipped into this PR. Best regards.

"extensions": [
"chd", "cdi", "gdi", "cue", "bin",
"lst", "dat", "elf", "zip", "7z", "m3u"
],
"makeoptions": {
"buildpath": "./",
"makescript": "Makefile",
"arguments": []
},
"options": {
"supportsMouse": false,
"useKeyboard": false
},
"save": "srm",
"license": "LICENSE",
"repo": "https://github.com/EmulatorJS/flycast"
}
]