#!/usr/bin/python3 """Output a string of bytes for subsequent disassembly.""" import os import sys def main(): """Generate acv.bin from a list of bytes.""" list_of_bytes = [ 104, 162, 48, 169, 3, 157, 66, 3, 169, 29, 157, 68, 3, 169, 3, 157, 69, 3, 169, 1, 157, 72, 3, 169, 0, 157, 73, 3, 169, 4, 157, 74, 3, 169, 128, 157, 75, 3, 32, 86, 228, 48, 24, 169, 7, 157, 66, 3, 169, 0, 157, 72, 3, 157, 73, 3, 32, 86, 228, 16, 238, 192, 136, 208, 2, 160, 1, 132, 195, 132, 212, 169, 0, 133, 213, 169, 12, 157, 66, 3, 76, 86, 228, ] os.write(sys.stdout.fileno(), bytes(list_of_bytes)) main()