Skip to content

6502bench SourceGen v1.3.2

Compare
Choose a tag to compare
@fadden fadden released this 06 Oct 22:34
· 594 commits to master since this release

6502bench currently has one tool, the SourceGen disassembler.

The best place to start is to work through the tutorials. Launch the program, hit F1 to open the documentation (which is just a set of HTML pages viewed in your web browser), then click on the Tutorials link. Various sample projects are included in the distribution.

Changes since last stable release:

  • NOTE: the project file format has changed slightly. Projects written by this release can be opened with older versions, but formatting on string operands will be lost.
  • NOTE: script extension plugins have been changed. Pre-v1.3 plugins will not work with this release.
  • Added local variable tables. These are redefinable symbols that can be used for zero-page and stack-relative operands.
  • Added support for the ACME cross-assembler (65816 support is limited).
  • Added support for multiple character encodings. C64 PETSCII and screen code strings can be detected automatically, and the encodings may now be manually specified for characters and strings. Some non-printable characters, such as CR/LF, are now allowed in strings.
  • Added ability to "export" the code listing to text, CSV, or HTML.
  • Character and string delimiters are configurable.
  • Rewrote the Edit Instruction Operand dialog to make the "shortcuts" less obscure.
  • Made various improvements to source code generation for 64tass, cc65 (now v2.18), and Merlin 32.
  • Changed handling of BRK to treat it as a single-byte instruction with no operand.
  • Added support for Apple /// SOS MLI calls, which use BRK instructions with inline data.
  • Various bug fixes and miscellaneous improvements.

The program is written in C# .NET, using WPF for the user interface. The attached binaries have been tested on Windows 7 SP1 and Windows 10. There is no installer; just unzip the files somewhere convenient and double-click SourceGen.exe to start the program.

Linux and Mac OS X are not supported at this time. (Wine doesn't seem to work with .NET.)

IMPORTANT: your Windows system must have .NET Framework v4.6.2 or later installed. Most systems will already have this, but if you have trouble getting the app to start, you may need to install it. You can download it directly from Microsoft, at https://www.microsoft.com/net/download/dotnet-framework-runtime .

If you want to build the sources yourself, clone the git repository and open WorkBench.sln in Visual Studio 2017 or later. I use the free-to-download Community Edition for development.