Disassemble gc-eu-mq

This commit is contained in:
cadmic
2023-12-11 00:23:42 -08:00
parent 3d9db8d34d
commit 204bd3e312
20 changed files with 15525 additions and 16 deletions
+3 -3
View File
@@ -39,14 +39,14 @@ def firstDiffMain():
parser = argparse.ArgumentParser(description="Find the first difference(s) between the built ROM and the base ROM.")
parser.add_argument("-c", "--count", type=int, default=5, help="find up to this many instruction difference(s)")
parser.add_argument("-v", "--version", help="Which version should be processed", default="gc-eu-mq-dbg")
parser.add_argument("-v", "--oot-version", help="Which version should be processed", default="gc-eu-mq-dbg")
parser.add_argument("-a", "--add-colons", action='store_true', help="Add colon between bytes" )
args = parser.parse_args()
buildFolder = Path("build") / args.version
buildFolder = Path("build") / args.oot_version
BUILTROM = Path(f"oot-{args.version}.z64")
BUILTROM = Path(f"oot-{args.oot_version}.z64")
BUILTMAP = buildFolder / "z64.map"
EXPECTEDROM = Path(f"baseroms/{args.version}/baserom-decompressed.z64")