| 119 | } |
| 120 | |
| 121 | uint8_t decode_side(uint8_t side) |
| 122 | { |
| 123 | /* Mac disks, being weird, use the side byte to encode both the side (in |
| 124 | * bit 5) and also whether we're above track 0x3f (in bit 0). |
| 125 | */ |
| 126 | |
| 127 | return !!(side & 0x20); |
| 128 | } |
| 129 | |
| 130 | class MacintoshDecoder : public Decoder |
| 131 | { |