Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.75 KB

disk-aeslanier.md

File metadata and controls

41 lines (32 loc) · 1.75 KB

Disk: AES Lanier word processor

Back in 1980 Lanier released a series of very early integrated word processor appliances, the No Problem. These were actually rebranded AES Data Superplus machines. They wrer gigantic, weighed 40kg, and one example I've found cost £13,000 in 1981 (the equivalent of nearly £50,000 in 2018!).

8080 machines with 32kB of RAM, they ran their own proprietary word processing software off twin 5.25" drive units, but apparently other software was available.

The disk format is exceptionally weird. They used 77 track, 32 sector, single sided hard sectored disks, where there were multiple index holes, indicating to the hardware where the sectors start. The encoding scheme itself is MMFM (aka M2FM), an early attempt at double-density disk encoding which rapidly got obsoleted by the simpler MFM. Even aside from the encoding, the format on disk was strange; unified sector header/data records, so that the sector header (containing the sector and track number) is actually inside the user data.

FluxEngine can read these, but I only have a single, fairly poor example of a disk image, and I've had to make a lot of guesses as to the sector format based on what looks right. If anyone knows anything about these disks, please get in touch.

Reading discs

Just do:

.obj/fe-readaeslanier

Useful references