dsk2woz/README.md

19 lines
652 B
Markdown
Raw Permalink Normal View History

2018-06-05 23:32:42 +00:00
# dsk2woz
2018-06-05 23:40:13 +00:00
A command-line tool to convert Apple II DSK images to WOZ format.
Usage:
dsk2woz input.dsk output.woz
2018-06-06 00:11:14 +00:00
Reads the contents of the disk `input.dsk` and outputs the WOZ-format file `output.woz`.
2018-06-05 23:40:13 +00:00
## Building
There are no dependencies beyond the C standard library. So e.g.
cc dsk2woz.c -o dsk2woz
2018-06-06 00:11:14 +00:00
## DOS 3.3 versus Pro-DOS
Apple II DSK images contain implicitly-ordered sectors; the order depends on whether the image contains a DOS 3.3 image or a Pro-DOS image.
For the purposes of this tool if the file extension of the input disk has a 'p' in it then it is treated as a Pro-DOS image. Otherwise it is treated as a DOS 3.3 image.