dec method

void dec()

Implementation

void dec() {
  //Debugger.verbose('${pcHex(-1)} [dec]');

  final operand = visitOperandsShortForm();

  final value = MathHelper.toSigned(readVariable(operand.rawValue!)) - 1;

  writeVariable(operand.rawValue!, value);
}