mirror of
https://github.com/ksherlock/ample.git
synced 2026-01-22 16:16:02 +00:00
update machines for current mame.
tweaks description of mockingboard, adds gizmo, uthernet, cms scsi
This commit is contained in:
@@ -55,10 +55,12 @@ def find_machine_media(parent):
|
||||
if len(tt) >= 3: slot = tt[0]
|
||||
# exclude:
|
||||
# apple1 - tag="exp:cassette:cassette"
|
||||
# apple2 - tag="sl6:diskiing:0:525"
|
||||
# apple2 - tag="sl6:diskiing:0:525" - <slot name="sl6">
|
||||
# include:
|
||||
# apple2c - tag="sl6:0:525"
|
||||
# apple3 - tag="0:525"
|
||||
# apple2c - tag="sl6:0:525" - <slot name="sl:0">.
|
||||
# apple3 - tag="0:525" - <slot name="0">
|
||||
|
||||
# format slot name : slotoption name : machine->device type name
|
||||
|
||||
if mname == "apple2c" and slot == "sl6": slot = None
|
||||
|
||||
@@ -147,7 +149,8 @@ for m in MACHINES:
|
||||
|
||||
print(m)
|
||||
|
||||
st = subprocess.run(["mame", m, "-listxml"], capture_output=True)
|
||||
env = {'DYLD_FALLBACK_FRAMEWORK_PATH': '../embedded'}
|
||||
st = subprocess.run(["../embedded/mame64", m, "-listxml"], capture_output=True, env=env)
|
||||
if st.returncode != 0:
|
||||
print("mame error: {}".format(m))
|
||||
exit(1)
|
||||
|
||||
@@ -36,7 +36,8 @@ tree = [
|
||||
("IIe Clones", None, iie_clones_children),
|
||||
]
|
||||
|
||||
st = subprocess.run(["mame", "-listfull", *MACHINES], check=True, capture_output=True, text=True)
|
||||
env = {'DYLD_FALLBACK_FRAMEWORK_PATH': '../embedded'}
|
||||
st = subprocess.run(["../embedded/mame64", "-listfull", *MACHINES], check=True, capture_output=True, text=True, env=env)
|
||||
# Name: Description:
|
||||
# apple2gs "Apple IIgs (ROM03)"
|
||||
# apple2gsr0 "Apple IIgs (ROM00)"
|
||||
|
||||
Reference in New Issue
Block a user