Add mode $8800 tilemap conversion tool

This commit is contained in:
ISSOtm
2019-04-28 19:38:16 +02:00
parent ecb895c97a
commit 0ebc012c9e
2 changed files with 12 additions and 0 deletions

8
src/tools/bit7ify.py Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env python3
from sys import argv
with open(argv[1], "rb") as input:
with open(argv[2], "wb") as output:
output.write(bytes((byte ^ 0x80 for byte in input.read())))