Posted By
 Csabo on 2005-09-13 07:13:49
| Re: Converting images using FLI process
All you need is -c16 and the input/output files (as long as your original PRG would run with a SYS). When I used PUCrunch, i used this batch file:
@echo off del _*.prg pu -c16 -m7 %1.prg _7n.prg pu -c16 -m6 %1.prg _6n.prg pu -c16 -m5 %1.prg _5n.prg pu -c16 -m7 -fdelta %1.prg _7d.prg pu -c16 -m6 -fdelta %1.prg _6d.prg pu -c16 -m5 -fdelta %1.prg _5d.prg dir _*.prg /os
Which would of course compress the passed filename with all six variations and then I'd look at the generated file sizes, and pick the smallest. PUCrunch is great, but I strongly recommend switching to Exomizer, which is even better. (And the command line options are explained on its page.) |