mirror of
https://github.com/paulhagstrom/dsk2po.git
synced 2024-12-22 00:29:22 +00:00
20 lines
747 B
Markdown
20 lines
747 B
Markdown
# dsk2po
|
|
Python script to convert Apple II/III .DSK (DO) images to ProDOS-ordered images
|
|
|
|
This is nothing very exciting, it just maps sectors in .dsk (DOS-order, .do) files
|
|
into those of a .po (ProDOS-order) file. Most Apple II emulators can handle both,
|
|
but certain utilities (with which I wanted to use existing .dsk images) assume
|
|
ProDOS-ordered files.
|
|
|
|
Usage is just (assuming you've done chmod 755 dsk2po.py, else precede with python command):
|
|
|
|
./dsk2po.py image.dsk
|
|
|
|
This will create image.dsk.po alongside it. Pretty much no checking is done.
|
|
It just goes through 35 tracks and converts them, then ends.
|
|
|
|
This can be used as an action for find, like so:
|
|
|
|
find imagefolders/\*/\*.dsk -exec ./dsk2po.py {} \;
|
|
|
|
...which was mostly the point. |