1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-07 23:25:00 +00:00

Merge pull request #1155 from TomHarte/Templates

Show failing operations in human form.
This commit is contained in:
Thomas Harte
2023-08-19 15:58:15 -04:00
committed by GitHub

View File

@@ -685,7 +685,7 @@ void print_transactions(FILE *target, const std::vector<Transaction> &transactio
} else {
printf("\nAll failing operations:\n");
for(const auto operation: failing_operations) {
printf("%d,\n", int(operation));
printf("%s,\n", InstructionSet::M68k::to_string(operation));
}
}