You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
372 B
21 lines
372 B
#!/usr/bin/python |
|
import sys; |
|
|
|
if len(sys.argv) < 3: |
|
print "Usage: ./mcm2bin.py clarify.mcm clarify.bin" |
|
exit() |
|
|
|
with open(sys.argv[1]) as inp: |
|
content = inp.readlines() |
|
inp.close(); |
|
|
|
content.pop(0) |
|
|
|
out = open(sys.argv[2], 'wb') |
|
i = -1 |
|
for line in content: |
|
i = i + 1 |
|
if i % 64 < 54: |
|
b = int(line, 2) |
|
out.write(bytearray([b])) |
|
out.close()
|
|
|