Maintenance.

This commit is contained in:
Marcel Keller
2024-07-09 12:17:25 +10:00
parent b0dc2b36f8
commit 78fe3d8bad
234 changed files with 4273 additions and 1367 deletions

View File

@@ -84,8 +84,8 @@ void Instruction::parse(istream& s, int pos)
ostringstream os;
os << "Code not defined for instruction " << showbase << hex << opcode << dec << endl;
os << "This virtual machine executes binary circuits only." << endl;
os << "Use 'compile.py -B'." << endl;
throw Invalid_Instruction(os.str());
os << "Use 'compile.py -B'.";
exit_error(os.str());
break;
}
}