Skip to content

Commit

Permalink
Experimentation with 'FinalBytes'
Browse files Browse the repository at this point in the history
  • Loading branch information
mungewell committed Oct 19, 2022
1 parent 6b6c015 commit aae4d78
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions decode_effect.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ def main():
donor.add_argument("-X", "--donor-xml",
help="extract XML from donor",
action="store_true", dest="dxml")
donor.add_argument("-F", "--donor-final",
help="extract FinalBytes from donor",
action="store_true", dest="dfinal")

donor.add_argument("-V", "--crc",
help="validate CRC32 checksum",
Expand Down Expand Up @@ -191,6 +194,8 @@ def main():
if options.dxml:
config["PRMJ"] = dconfig["PRMJ"]
config["PRME"] = dconfig["PRME"]
if options.dfinal:
config["unknown5"] = dconfig["unknown5"]

data = zoomzt2.ZD2.build(config)

Expand Down

0 comments on commit aae4d78

Please sign in to comment.