apple2 disk image manipulation commandline tool
Go to file
Zellyn Hunter 3a55e2fd91 travis: use default go version 2017-01-26 21:55:58 -06:00
cmd nakedos: make mkhello's FHELLO turn the drive off 2016-12-22 23:30:41 -05:00
lib add mksd command 2016-12-19 23:51:20 -05:00
.gitignore Make Travis build github releases on tags 2016-11-13 22:09:03 -05:00
.travis.yml travis: use default go version 2017-01-26 21:55:58 -06:00
LICENSE Initial commit 2016-10-28 21:20:20 -04:00
README.md add mksd command 2016-12-19 23:51:20 -05:00
main.go Add go report card; fix vet, lint, etc. warnings 2016-12-10 16:29:41 -05:00

README.md

diskii

Note: diskii is not stable yet! I don't expect to remove functionality, but I'm still experimenting with the command syntax and organization, so don't get too comfy with it.

diskii-the-tool is a commandline tool for working with Apple II disk images. Given that AppleCommander already does everything, it's not terribly necessary. It is, however, mine. Minor benefits (right now) are binaries you can copy around (no Java needed), and support for Super-Mon symbol tables on NakedOS disks.

diskii-the-library is probably more useful: a library of disk-image-manipulation code that can be used by other Go programs.

diskii's major disadvantage is that it mostly doesn't exist yet.

Build Status Report Card

It rhymes with “whiskey”.

Discussion/support is in #apple2 on the retrocomputing Slack (invites here).

Goals

Eventually, it aims to be a comprehensive disk image manipulation tool, but for now only the applesoft decode command works.

The library code aims (a) to support the commandline tool operations, and (b) to replace the "read and write disk images" code of the goapple2 emulator.

Current disk operations supported:

Feature DOS 3.3 ProDOS NakedOS/Super-Mon
basic structures
ls
dump
put
dumptext
delete
rename
put
puttext
extract (all)
lock/unlock
init
defrag

Installing/updating

Assuming you have Go installed, run go get -u github.com/zellyn/diskii

You can also download automatically-built binaries from the latest release page. If you need binaries for a different architecture, please send a pull request or open an issue.

Short-term TODOs/roadmap/easy ways to contribute

My rough TODO list (apart from anything marked () in the disk operations matrix is listed below. Anything that an actual user needs will be likely to get priority.

  • Build per-platform binaries for Linux, MacOS, Windows.
  • Implement GetFile for DOS 3.3
  • Add and implement the -l flag for ls
  • Add Delete to the disk.Operator interface
    • Implement it for Super-Mon
    • Implement it for DOS 3.3
  • Make 13-sector DOS disks work
  • Read/write nybble formats
  • Read/write gzipped files
  • Add ProDOS support (add lib/prodos/prodos.go and register a ProDOS operator factory)