Update README.md

This commit is contained in:
Mark Long 2016-10-31 11:20:55 -05:00 committed by GitHub
parent e85b95b66b
commit 30010dc1a4
1 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,7 @@ This code is being developed using Qt5, with development work being done on Linu
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 with syntax highlighting, 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 with a flow-tracing disassembler, which can show hex dumps and disassembly of code and data blocks (it also temporarily has some common labels for well-known addresses hard-coded into the display, though dynamic labeling of symbols is in the works.) It can also display the relocation table for type-R relocatable files.
* A binary file processor with a flow-tracing disassembler, which can show hex dumps and disassembly of code and data blocks (it also temporarily has some common labels for well-known addresses hard-coded into the display, though dynamic labeling of symbols is in the works.) It can also display the relocation table for type-R relocatable files. It also displays a linear graph of jumps, subroutines, and branches!
* 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
@ -26,7 +26,6 @@ In the pipeline are some more useful features (as I get a chance):
* 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 **(Currently in progress!)**
* Automated detection of Code Segments vs Data Segments **(Currently in progress!)**
* Allowing user-defined labels for addresses **(Currently in progress!)**
* Shape table processing and viewing