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

View File

@@ -48,6 +48,10 @@ ASMFILES := $(wildcard $(SRCDIR)/*.asm)
%.pb16: %
src/tools/pb16.py $< $@
# RGBGFX generates tilemaps with sequential tile IDs, which works fine for $8000 mode but not $8800 mode; `bit7ify.py` takes care to flip bit 7 so maps become $8800-compliant
%.bit7.tilemap: src/tools/bit7ify.py %.tilemap
$^ $@
CLEANTARGETS := $(BINDIR) $(DEPSDIR) $(OBJDIR) dummy # The list of things that must be cleared; expanded by the resource Makefiles
INITTARGETS :=