Files
fluxengine/doc/disk-macintosh.md
2021-01-05 00:36:06 +01:00

3.7 KiB

Disk: Macintosh

Macintosh disks come in two varieties: the newer 1440kB ones, which are perfectly ordinary PC disks you should use fluxengine read ibm to read, and the older 800kB disks (and 400kB for the single sides ones). They have 80 tracks and up to 12 sectors per track.

They are also completely insane.

It's not just the weird, custom GCR encoding. It's not just the utterly bizarre additional encoding/checksum built on top of that where every byte is mutated according to the previous bytes in the sector. It's not just the odd way in which disks think they have four sides, two on one side and two on the other, so that the track byte stores only the bottom 6 bits of the track number. It's not just the way that Macintosh sectors are 524 bytes long. No, it's the way the Macintosh drive changes speed depending on which track it's looking at, so that each track contains a different amount of data.

The reason for this is actually quite sensible: the tracks towards the centre of the disk are obviously moving more slowly, so you can't pack the bits in quite as closely (due to limitations in the magnetic media). You can use a higher bitrate at the edge of the disk than in the middle. Many platforms, for example the Commodore 64 1541 drive, changed bitrate this way.

But Macintosh disks used a constant bitrate and changed the speed that the disk spun instead to achieve the same effect...

Anyway: FluxEngine will read them fine on conventional drives. Because it's clever.

Big note. Apparently --- and I'm still getting to the bottom of this --- some drives work and some don't. My drives produce about 90% good reads of known good disks. One rumour I've heard is that drives sometimes include filters which damage the signals at very particular intervals which Mac disks use, but frankly this seems unlikely; it could be a software issue at my end and I'm investigating. If you have any insight, please get in touch.

Reading discs

Just do:

fluxengine read mac -o mac.diskcopy

You should end up with a mac.diskcopy file which is compatible with DiskCopy 4.2, which most Mac emulators support.

Big warning! Mac disk images are complicated due to the way the tracks are different sizes and the odd sector size. If you use a normal .img file, then FluxEngine will store them in a simple 524 x 12 x 2 x 80 layout, with holes where missing sectors should be; this was easiest, but is unlikely to work with most Mac emulators and other software. In these files, the 12 bytes of metadata follow the 512 bytes of user payload in the sector image. If you don't want it, specify a geometry in the output file with a 512-byte sectore size like -o mac.img:c=80:h=1:s=12:b=512.

Writing discs

Just do:

fluxengine write mac -i mac.diskcopy

It'll read the DiskCopy 4.2 file and write it out.

The same warning as above applies --- you can use normal .img files but it's problematic. Use DiskCopy 4.2 files instead.

Useful references