I've been playing with the decrunch routine for Exomizer.
The buffer used is at the end of the routine, and is set like this:
exo_mapbasebits:defs 156 ;tables for bits, baseL, baseH
I want to move this buffer to a different place in memory (e.g. &4000 or something) and the comment in the source code states "you may change exo_mapbasebits to point to any free buffer".
I don't want to use an ORG in the assembly because it won't work for what I want to do, and I tried to use a EQU address but it doesn't work.
Anyone know how I do this...?
What is your problem exactly? I don't have any problem using:exo_mapbasebits EQU $4000
D'Oh!
I left the colon (:) in after the tag name.
Thanks SyX :)