Завершить разделение SDK и внешних проектов

This commit is contained in:
Александр Петров
2026-09-16 10:01:43 +03:00
parent 0e74aaa7ee
commit 2e7ffd64a4
1965 changed files with 373 additions and 201393 deletions
-5
View File
@@ -153,8 +153,6 @@ void worker(void) __banked {
try: launcher.wait(timeout=8)
except subprocess.TimeoutExpired: launcher.kill();launcher.wait()
profile=MameProfile.resolve()
if profile.binary is None and (ROOT/'mame/v306/mame.arm').is_file():
profile=MameProfile.resolve({'MAME_HOME':str(ROOT/'mame/v306')})
profile.validate(dss=True)
create_floppy_image(str(work/'probe.img'),[('PROBE.EXE',str(exe))])
system=work/'system.chd'
@@ -264,9 +262,6 @@ end)
installed = profile.home.parent / 'plugins'
if installed.is_dir():
plugin_paths.append(installed)
legacy = ROOT / 'mame/sources/MAME/plugins'
if legacy.is_dir():
plugin_paths.append(legacy)
command.extend(['-verbose','-plugin','sdbgbridge','-pluginspath',
';'.join(map(str, plugin_paths))])
with (work/'mame.log').open('w') as log: