2018-10-22 00:02:34 +00:00
|
|
|
# 6502bench #
|
2018-09-28 17:05:11 +00:00
|
|
|
|
2018-10-01 18:09:04 +00:00
|
|
|
[Features](#key-features) - [Installation](#installation) - [Getting Started](#getting-started) - [About the Code](#about-the-code)
|
2018-09-30 22:10:08 +00:00
|
|
|
|
2018-10-01 04:41:46 +00:00
|
|
|
[6502bench](https://6502bench.com/) is a code development "workbench"
|
|
|
|
for 6502, 65C02, and 65802/65816 code. It currently features one tool,
|
2019-07-29 21:16:32 +00:00
|
|
|
the SourceGen disassembler, and runs on Windows 7 or later.
|
2018-09-28 17:05:11 +00:00
|
|
|
|
|
|
|
You can download the source code and build it yourself, or click the
|
2018-10-01 18:09:04 +00:00
|
|
|
[Releases tab](https://github.com/fadden/6502bench/releases) for
|
2019-09-27 20:52:25 +00:00
|
|
|
downloads with pre-built binaries.
|
2018-09-28 17:05:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
## SourceGen ##
|
|
|
|
|
|
|
|
SourceGen converts machine-language programs to assembly-language source
|
|
|
|
code. It has most of the features you will find in other 6502 disassemblers,
|
|
|
|
as well as many less-common ones.
|
|
|
|
|
2018-09-30 22:10:08 +00:00
|
|
|
### Key Features ###
|
|
|
|
|
|
|
|
- Fully interactive point-and-click GUI. Define labels, set addresses,
|
|
|
|
add comments, and see the results immediately. Add multi-line comments
|
2020-01-27 21:32:41 +00:00
|
|
|
and have them word-wrapped automatically. Create inline visualizations
|
2020-07-31 03:20:39 +00:00
|
|
|
of embedded bitmaps and wireframe data, and define animated sequences.
|
|
|
|
- Sophisticated static analysis. The disassembly engine traces code
|
|
|
|
execution, automatically finding all instructions reachable from defined
|
|
|
|
entry points. Changes to the processor status flags are tracked,
|
|
|
|
allowing identification of branches that are always/never taken,
|
|
|
|
accurate cycle count listings, and easier analysis of 65816 code with
|
|
|
|
variable-width registers.
|
2019-04-19 21:37:46 +00:00
|
|
|
- Easy generation of assembly source code for popular cross-assemblers
|
2019-09-27 20:52:25 +00:00
|
|
|
(currently 64tass, ACME, cc65, and Merlin 32). Cross-assemblers can be
|
|
|
|
invoked from the GUI to verify correctness.
|
2018-09-30 22:10:08 +00:00
|
|
|
- Symbols and constants are provided for ROM and operating system entry
|
|
|
|
points on several popular systems.
|
2019-09-27 20:52:25 +00:00
|
|
|
- Project files are designed for sharing and collaboration.
|
2018-09-30 22:10:08 +00:00
|
|
|
|
2021-11-21 19:22:08 +00:00
|
|
|
SourceGen has been used to disassemble software for the Apple II, C64,
|
2020-08-06 15:11:30 +00:00
|
|
|
NES (Nintendo Entertainment System), Atari 2600 VCS, and coin-op
|
2021-11-21 19:20:07 +00:00
|
|
|
arcade systems. A large collection of completed projects can be found
|
|
|
|
on the [6502 Disassembly](https://6502disassembly.com) site.
|
|
|
|
Video demos of [basic features](https://youtu.be/dalISyBPQq8)
|
2020-08-06 15:14:44 +00:00
|
|
|
and [visualizations](https://youtu.be/lSvEr5nCHbY) are available.
|
2018-09-28 17:05:11 +00:00
|
|
|
|
2020-07-31 03:20:39 +00:00
|
|
|
#### Features in Detail ####
|
2018-09-28 17:05:11 +00:00
|
|
|
|
2018-09-30 22:10:08 +00:00
|
|
|
Analyzer:
|
2020-10-23 17:50:36 +00:00
|
|
|
- Support for 6502, 65C02, and 65816, including undocumented opcodes
|
|
|
|
and the W65C02 extensions.
|
2020-10-24 15:26:55 +00:00
|
|
|
- Code tagging mechanism allows manual identification of code start/stop
|
|
|
|
points and inline data.
|
2018-09-30 22:10:08 +00:00
|
|
|
- Editable labels are generated for every branch destination and data target.
|
2019-09-27 20:52:25 +00:00
|
|
|
- Automatic detection and classification of character strings and runs of
|
2018-09-28 17:05:11 +00:00
|
|
|
identical bytes.
|
2018-09-30 22:10:08 +00:00
|
|
|
- Symbol files for ROM entry points, operating system constants, and other
|
2019-09-27 20:52:25 +00:00
|
|
|
platform-specific data are stored in plain text files loaded at runtime.
|
2018-09-30 22:10:08 +00:00
|
|
|
- Extension scripts can be defined that automatically reformat code and
|
2019-09-27 20:52:25 +00:00
|
|
|
identify inline data that follows a JSR, JSL, or BRK.
|
2018-09-30 22:10:08 +00:00
|
|
|
|
|
|
|
User interface:
|
|
|
|
- "Infinite" undo/redo of all operations.
|
|
|
|
- Cross-reference tables are generated for every branch and data target
|
|
|
|
address, as well as for external platform symbols.
|
2019-09-27 20:52:25 +00:00
|
|
|
- Instruction operand formats (hex, decimal, binary, character, symbol) can
|
|
|
|
be set for individual instructions. References to nearby symbols are
|
|
|
|
offset, allowing simple expressions like "addr + 1".
|
2018-09-30 22:10:08 +00:00
|
|
|
- Data areas can be formatted in various formats, including individual
|
2019-09-27 20:52:25 +00:00
|
|
|
bytes, 16-bit and 24-bit words, addresses, or strings. Multiple
|
|
|
|
character encodings are supported, including ASCII, high ASCII,
|
|
|
|
C64 PETSCII, and C64 screen codes.
|
|
|
|
- Zero-page variables can be given different labels at different points
|
|
|
|
in the program.
|
2018-09-30 22:10:08 +00:00
|
|
|
- Multi-line comments can be "boxed" for an authentic retro feel.
|
|
|
|
- Notes can be added that aren't included in generated output. These also
|
|
|
|
function as color-coded bookmarks. Very useful for marking up a work in
|
2020-01-27 21:32:41 +00:00
|
|
|
progress. Similarly, symbols can be marked as uncertain by adding a
|
|
|
|
'?' that is automatically stripped away during code generation.
|
2020-07-31 03:20:39 +00:00
|
|
|
- Instruction reference data, such as CPU cycles and flags modified,
|
|
|
|
are shown along with a description of the opcode's function. Very
|
|
|
|
useful when encountering rarely-used undocumented instructions.
|
2018-09-30 22:10:08 +00:00
|
|
|
- Various aspects of the code display can be reconfigured, including
|
|
|
|
upper/lower case, pseudo-opcode naming, and expression formats. These
|
|
|
|
choices are not part of the project definition, so everyone can view a
|
|
|
|
project according to their own personal preferences.
|
|
|
|
|
|
|
|
Code generation:
|
2020-01-27 21:32:41 +00:00
|
|
|
- Labels can be global or local. Use non-unique labels like "@Loop"
|
|
|
|
for clarity. Labels will be promoted from local to global or renamed
|
|
|
|
to be unique as required by each assembler.
|
2018-09-30 22:10:08 +00:00
|
|
|
- Symbols may be exported from one project and imported into another to
|
|
|
|
facilitate multi-binary disassembly.
|
2019-09-27 20:52:25 +00:00
|
|
|
- Listings can be generated in HTML form for publication on the web.
|
2020-07-31 03:20:39 +00:00
|
|
|
Many aspects of the output format can be configured. Inline
|
|
|
|
visualizations are exported as GIF or animated GIF.
|
2018-09-30 22:10:08 +00:00
|
|
|
|
|
|
|
Miscellaneous:
|
2020-07-31 03:20:39 +00:00
|
|
|
- All project data is stored in text formats (primarily JSON).
|
2018-09-30 22:10:08 +00:00
|
|
|
- The project file includes nothing from the data file but a CRC. This may
|
|
|
|
allow the project to be shared without violating copyrights (subject to
|
|
|
|
local laws).
|
2020-01-27 21:32:41 +00:00
|
|
|
- Handy tools: file slicer, file concatenator, CPU instruction reference
|
|
|
|
chart, ASCII chart, file hex dump.
|
2020-07-31 03:20:39 +00:00
|
|
|
- The OMF converter tool can be used to disassemble Apple IIgs executables.
|
2018-09-28 17:05:11 +00:00
|
|
|
|
2019-09-27 20:52:25 +00:00
|
|
|
#### Limitations ####
|
|
|
|
|
2020-07-31 03:20:39 +00:00
|
|
|
While the 65816 CPU is fully supported, SourceGen can be awkward to use
|
|
|
|
with the large binaries that the expanded architecture makes possible. The
|
|
|
|
disassembly is displayed in a single scrolling window, so projects for
|
|
|
|
binaries larger than about 100KB become difficult to navigate. There may
|
|
|
|
also be performance issues at larger sizes. SourceGen currently imposes an
|
|
|
|
arbitrary 1MB limit on the data file.
|
|
|
|
|
|
|
|
Generating output larger than 64KB requires some target-specific
|
|
|
|
directives, e.g. for defining OMF segments for Apple IIgs executables.
|
|
|
|
SourceGen does not currently support these. While you can generate source
|
|
|
|
for a binary larger than 64KB, most cross-assemblers will fail to assemble
|
|
|
|
it without additional edits.
|
2019-09-27 20:52:25 +00:00
|
|
|
|
2020-10-23 17:50:36 +00:00
|
|
|
The zero-page argument for the Rockwell BBR/BBS instructions cannot be
|
|
|
|
formatted.
|
|
|
|
|
|
|
|
To learn about other areas for potential future development, visit the
|
2023-01-31 00:20:50 +00:00
|
|
|
wiki section for the current
|
|
|
|
["TO DO" list](https://github.com/fadden/6502bench/wiki/TO-DO-List).
|
2018-09-28 17:05:11 +00:00
|
|
|
|
2018-10-07 04:21:18 +00:00
|
|
|
To learn about the past, check the
|
|
|
|
[change log](https://github.com/fadden/6502bench/wiki/Change-Log).
|
|
|
|
|
2018-09-28 17:05:11 +00:00
|
|
|
|
2018-10-01 18:09:04 +00:00
|
|
|
## Installation ##
|
|
|
|
|
|
|
|
There is currently no installer -- just unzip the archive and run the
|
2019-09-27 20:52:25 +00:00
|
|
|
"SourceGen.exe" executable. The data files used by the program are found
|
|
|
|
automatically in the directory where the .EXE lives.
|
2018-10-01 18:09:04 +00:00
|
|
|
|
2019-07-29 21:16:32 +00:00
|
|
|
You need to have Microsoft .NET Framework v4.6.2 or later installed. Most
|
|
|
|
people will already have this. If SourceGen doesn't seem to want to start,
|
2021-06-08 00:49:23 +00:00
|
|
|
download the latest version (currently v4.8)
|
|
|
|
[directly from Microsoft](https://dotnet.microsoft.com/download/dotnet-framework/net48).
|
2023-01-31 00:20:50 +00:00
|
|
|
The framework requires Win7 SP1, Win8.1, Win10 updated through at least the
|
|
|
|
Anniversary Update (1607), or Win11. (One user who had trouble with the
|
|
|
|
4.7.2 installer was able to get the 4.6.2 installer to work.)
|
2018-10-01 18:09:04 +00:00
|
|
|
|
2023-01-31 00:20:50 +00:00
|
|
|
SourceGen does not currently run on Linux or Mac OS. My understanding is
|
|
|
|
that WPF-based .NET apps don't work under Mono or WINE, so SourceGen can only
|
|
|
|
be run on a full Windows system emulator.
|
2019-12-31 22:26:47 +00:00
|
|
|
|
2020-07-31 03:20:39 +00:00
|
|
|
(SourceGen versions 1.0 and 1.1 used the WinForms API, which has been
|
2021-11-01 22:07:29 +00:00
|
|
|
implemented for [Mono](https://www.mono-project.com/), but after
|
|
|
|
encountering significant bugs that I wasn't able to work around I
|
|
|
|
abandoned the approach and switched to WPF. Besides working better
|
|
|
|
under Windows, WPF uses a more modern approach (XAML) that may ease
|
|
|
|
the transition to a cross-platform GUI API like Avalonia or MAUI.)
|
2018-10-01 18:09:04 +00:00
|
|
|
|
|
|
|
|
2018-09-30 22:10:08 +00:00
|
|
|
## Getting Started ##
|
|
|
|
|
2021-06-08 00:49:23 +00:00
|
|
|
The best way to get started is by working through the tutorial, available
|
|
|
|
on the [web site](https://6502bench.com/sgtutorial/). I strongly recommend
|
|
|
|
doing this, as some aspects of SourceGen are non-obvious.
|
2018-09-30 22:10:08 +00:00
|
|
|
|
2021-06-08 00:49:23 +00:00
|
|
|
Several examples of completed projects are included in the SourceGen
|
|
|
|
distribution. Most of these are alongside the original source code,
|
|
|
|
allowing a direct comparison between how the code was written and how
|
|
|
|
SourceGen can format and display it.
|
2018-09-30 22:10:08 +00:00
|
|
|
|
|
|
|
|
2018-09-28 17:05:11 +00:00
|
|
|
## About the Code ##
|
|
|
|
|
2020-01-02 02:04:06 +00:00
|
|
|
The source code is licensed under Apache 2.0
|
|
|
|
(http://www.apache.org/licenses/LICENSE-2.0), which makes it free for use in
|
|
|
|
both open-source programs and closed-source commercial software. The license
|
|
|
|
terms are similar to BSD or MIT, but with some additional constraints on
|
|
|
|
patent licensing. (This is the same license Google uses for the Android
|
|
|
|
Open Source Project.)
|
|
|
|
|
|
|
|
Images are licensed under Creative Commons ShareAlike 4.0 International
|
|
|
|
(https://creativecommons.org/licenses/by-sa/4.0/).
|
|
|
|
|
|
|
|
For additional details, see the [source code notes](SourceNotes.md).
|