mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-22 17:32:01 +00:00
23 lines
643 B
Python
Executable File
23 lines
643 B
Python
Executable File
#!/usr/bin/env python2
|
|
|
|
# script that allows the binary output of sixtypical --output-format=c64-basic-prg --compile to be
|
|
# disassembled by https://github.com/tcarmelveilleux/dcc6502
|
|
|
|
import sys
|
|
import re
|
|
from subprocess import check_output
|
|
from tempfile import NamedTemporaryFile
|
|
|
|
bytes = sys.stdin.read()
|
|
|
|
bytes = bytes[14:]
|
|
|
|
f = NamedTemporaryFile(delete=False)
|
|
filename = f.name
|
|
f.write(bytes)
|
|
f.close()
|
|
|
|
lines = [line for line in check_output("dcc6502 -o 2061 {}".format(filename), shell=True).split('\n') if line and not line.startswith(';')]
|
|
lines = [re.sub(r'\s*\;.*$', '', line) for line in lines]
|
|
sys.stdout.write('\n'.join(lines))
|