use mame 224 internet archive rom set

since it's currently the newest available and seems less likely to
spontaneously disappear.
This commit is contained in:
Kelvin Sherlock 2021-01-06 21:23:29 -05:00
parent c88fe397f7
commit 07d0e78d04
3 changed files with 10 additions and 8 deletions

View File

@ -15,8 +15,8 @@
<key>NSQuitAlwaysKeepsWindows</key> <key>NSQuitAlwaysKeepsWindows</key>
<true/> <true/>
<key>DefaultDownloadURL</key> <key>DefaultDownloadURL</key>
<string>https://archive.org/download/mame0226_rom</string> <string>https://archive.org/download/mame0.224</string>
<key>DefaultDownloadExtension</key> <key>DefaultDownloadExtension</key>
<string>7z</string> <string>zip</string>
</dict> </dict>
</plist> </plist>

View File

@ -3,11 +3,11 @@
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>source</key> <key>source</key>
<string>https://archive.org/download/mame0226_rom</string> <string>https://archive.org/download/mame0.224</string>
<key>type</key> <key>type</key>
<string>7z</string> <string>zip</string>
<key>version</key> <key>version</key>
<string>0.226</string> <string>0.224</string>
<key>roms</key> <key>roms</key>
<array> <array>
<string>a1cass</string> <string>a1cass</string>

View File

@ -66,6 +66,8 @@ a2parprn
a2suprterm a2suprterm
a2uniprint a2uniprint
ccs7710 ccs7710
aprissi
""".splitlines() """.splitlines()
# #
@ -80,9 +82,9 @@ ROMS = [x for x in ROMS if x != ""]
ROMS.sort() ROMS.sort()
data = {} data = {}
data["source"] = "https://archive.org/download/mame0226_rom" data["source"] = "https://archive.org/download/mame0.224"
data["type"] = "7z" data["type"] = "zip"
data["version"] = "0.226" data["version"] = "0.224"
data["roms"] = ROMS data["roms"] = ROMS
# print(ROMS) # print(ROMS)