From a59b4f7be72ab86517fe5e21efe58444bf9f58c1 Mon Sep 17 00:00:00 2001 From: David Given Date: Tue, 16 Feb 2021 21:04:40 +0100 Subject: [PATCH] Document writing 1581 disks. --- doc/disk-c64.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/doc/disk-c64.md b/doc/disk-c64.md index 29f366ff..7cd9a390 100644 --- a/doc/disk-c64.md +++ b/doc/disk-c64.md @@ -25,8 +25,8 @@ quickly.) A standard 1541 disk has 35 tracks of 17 to 21 sectors, each 256 bytes long. -Reading discs -------------- +Reading 1541 disks +------------------ Just do: @@ -43,6 +43,24 @@ complicated due to the way the tracks are different sizes and the odd sector size, so you need the special D64 or LDBS output formats to represent them sensibly. Don't use IMG unless you know what you're doing. +Reading 1581 disks +------------------ + +These are handled by the IBM reader. Just do: + +``` +fluxengine read ibm +``` + +Writing 1581 disks +------------------ + +These are handled by the IBM writer. Just do: + +``` +fluxengine write ibm --ibm-preset-cbm1581 -i file.img +``` + Useful references -----------------