The new feature which I just completed is support for writing IPFs. So you can now create or transcode disk dumps that can be immediately loaded into emulators, read on a real Amiga (latest version of RawDIC/WHDLoad), or written back to a real disk using the latest Kryoflux software!
For example, I was able to back up my own copy of New Zealand Story (a typical Copylocked game disk) as follows. In Linux:
Code: Select all
dtc -r6 -fnzs/ -i0 -e79 -i5
disk-analyse --format="New Zealand Story" nzs/ nzs.dsk
disk-analyse --format="New Zealand Story" nzs.dsk nzs.ipf
Then, since I believe Kryoflux write support is currently only in the Windows tools, I do the writing step from a Windows VM:
Code: Select all
DTC -d0 -fnzs.ipf -s0 -e79 -w -l15
You can also do things like write out unprotected ADFs through Kryoflux, by transcoding them via mfmparse first:
Code: Select all
disk-analyse my.adf my.ipf
The bad news: It's Linux only (also Mac OS and Windows via Cygwin/MinGW) and you have to build it yourself, something like:
Code: Select all
git clone http://github.com/keirf/Disk-Utilities
cd Disk-Utilities
make
su -c make install