diff --git a/thun/dump-asm.py b/thun/dump-asm.py index 8c0eda6..b1466a9 100644 --- a/thun/dump-asm.py +++ b/thun/dump-asm.py @@ -1,6 +1,5 @@ -s = '''''' -s = s.splitlines() -s = ' '.join(s) -s = s.replace('), ', '),\n') -with open('thun/asm-dump.txt', 'wb') as f: +s = ' '.join('''\ +'''.splitlines()).replace('), ', '),\n') + +with open('./asm-dump.txt', 'wb') as f: f.write(s) \ No newline at end of file