Changelog

Source code for all releases can be found at code.benbridle.com/torque-asm.

Version 2.5.0

  • Fixed coloured output on Windows
  • Added the <abs> expression operator

Version 2.4.0

  • Allowed label references in expressions for pinned addresses
  • Added first-class string values to the language
  • Added the <tal> expression operator
  • Added rust-toolchain.toml to simplify the build process

Version 2.3.0

  • Added the ability for a macro to recursively invoke itself
  • Added the <len> expression operator

Version 2.2.0

  • Added octal literals (prefixed with 0o)

Version 2.1.0

  • Added support for the CMD format used by CP/M executable files
  • Added negative integer literals
  • Fixed incorrect width calculation for negative integers

Version 2.0.2

  • Fixed issue with nonexistent cyclic dependency errors being reported
  • Added reporting of all symbols involved in a cyclic dependency error

Version 2.0.1

  • Changed [extension] positional argument to the --extension named switch
  • Improved the text shown with --help
  • Fixed issue with incorrect source context being shown in symbol resolution errors

Version 2.0.0

  • Added less-than-equal, greater-than-equal, multiply, divide, modulo, and exponent operators to expressions
  • Added conditional blocks (declared with ?)
  • Added character literals (enclosed with ')
  • Added binary literals (prefixed with 0b)
  • Added the ability to pack negative values into word templates
  • Added optional _ separator characters to integer literals
  • Added --help switch that displays usage information
  • Added --width switch that enforced a fixed word width
  • Changed expressions to accept nested expressions and invocations with arguments
  • Changed pinned addresses to accept invocations and expressions
  • Changed behaviour of string arguments to repeat the whole invocation, not just the words inside the invocation
  • Improved error reports
  • Improved density of inhx and inhx32 output formats when pinned addresses are used

Version 1.2.0

  • Renamed binary from torque-asm to tq

Version 1.1.1

  • Fixed issue with compiling under rust 1.87.0

Version 1.1.0

  • Added string literals
  • Added INHX output format

Version 1.0.0

  • Initial version