Mercurial > repos > blastem
view maketests.py @ 1636:d2775a242dc6
Make sure M68K sync and target cycles are updated after loading a savestate. Fixes an issue in which loading a savestate would result in things being unresponsive until emulation cycle caught up to whatever the pre-state load sync cycle was
author | Mike Pavone <pavone@retrodev.com> |
---|---|
date | Sun, 11 Nov 2018 11:33:38 -0800 |
parents | f7ff02eeec2f |
children | ab577e2ed66a |
line wrap: on
line source
#!/usr/bin/env python from glob import glob import subprocess from sys import exit sources = set() for path in glob('generated_tests/*/*.s68'): sources.add(path) bins = set() for path in glob('generated_tests/*/*.bin'): bins.add(path) for path in sources: binpath = path.replace('.s68', '.bin') if not binpath in bins: print binpath res = subprocess.call(['vasmm68k_mot', '-Fbin', '-m68000', '-no-opt', '-spaces', '-o', binpath, path]) if res != 0: print 'vasmm68k_mot returned non-zero status code', res exit(1)