not method
void
not()
Implementation
void not() {
//Debugger.verbose('${pcHex(-1)} [not]');
final operand = visitOperandsShortForm();
final resultTo = readb();
writeVariable(resultTo, ~operand.value!);
}