Apple Software Analysis WorkShop - Tools for the Apple II
Go to file
Mark Long edade65dc4 Renamed disk images directory, added an image directory with a screenshot. 2016-10-27 11:58:50 -05:00
disk-images Renamed disk images directory, added an image directory with a screenshot. 2016-10-27 11:58:50 -05:00
doc Updated notes 2016-10-26 18:32:42 -05:00
image Renamed disk images directory, added an image directory with a screenshot. 2016-10-27 11:58:50 -05:00
src Removed some redundant code 2016-10-26 18:33:08 -05:00
AppleSAWS.pro Changing disassembler to walk code paths 2016-10-26 11:32:48 -05:00
LICENSE Updated name on copyright notice. 2015-12-01 10:22:15 -06:00
README.md Update README.md 2016-10-24 23:59:58 -05:00

README.md

AppleSAWS

##Apple Software Analysis WorkShop

This is a toolkit for exploring DOS 3.3 disk contents. I started this because I had become interested in a game that I used to play a long time ago and I wanted to dig deeper into the internals of how it worked. Since it was a nice combination of a series of Applesoft and Binary files, I decided that a tool to help explore those types of things would be handy. Of course, I've ended up spending far more time writing the tool than I have actually exploring the game, but nonetheless, it's been a fun ongoing project.

This code is being developed using Qt5, with development work being done on Linux, but it should compile and run without problems on Windows and Mac.

Among other things, the app includes:

  • Code that reads and parses DOS-format disk images at the disk-structure level. (It's just read-only for now, and ProDOS is on the horizon)
  • An Applesoft parser/retokenizer/reformatter which can show code in its normal form or reindented on multiple lines, and can optionally show integers as hex values inline. The retokenizer creates new tokens for strings, variable names, numeric values, DATA payloads, REM remarks, and other things that are nice to have -- and sets the stage to create an analyzer for deeper processing of the code later on.
  • A binary file processor which can show hex dumps and a rudimentary disassembly of the code (it also temporarily has some common labels for well-known addresses hard-coded into the display.) It can also display the relocation table for type-R relocatable files.
  • A Text file viewer.
  • A graphics viewer which can show hires screen dumps as monochrome, with NTSC artifacts, or a hybrid mode where each pixel's natural color is shown in-place (with no white color blending.)
  • An HRCG character set viewer and explorer
  • Exporting files and graphics to the local filesystem (as either .txt or .png files, as appropriate)
  • (Though not useful to most) A maze viewer for the game which I was originally exploring (Datamost's "The Missing Ring", by Terry Romine, 1982)
  • Probably some other stuff I can't think of at the moment.

There is also a Hex/Decimal converter utility and some in-app documentation for HRCG control character codes. Mainly stuff that I found useful at the time I was writing it.

In the pipeline are some more useful features (as I get a chance):

  • Syntax Highlighting
  • More low-level disk exploration tools (sector-level stuff, comparing DOS versions between disks, etc.)
  • More analysis of AppleSoft programs (Tracing flow control, find addresses of PEEKS, POKES, CALLS, USRs, and &'s)
  • Processing and analysis of Integer Basic files
  • Much more robust disassembly tools:
    • Handling differences between 6502/65C02/65816 ops, as well as "undocumented" ops on the original 6502
    • Determining entry and exit points for subroutines
    • Automated detection of Code Segments vs Data Segments
    • Allowing user-defined labels for addresses
  • Shape table processing and viewing
  • ProDOS support
  • Modification/Writing disk images
  • Lots of optimization and refactoring
  • Introduction of project management, allowing annotation and documention of interconnectivity between files and disk image contents, as well as preferences of groups of default viewers to open for a given image or set of images
  • Plenty of other stuff!

Anyway, if you take a look at it and think it's interesting, I'd love to hear some feedback.