1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +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
commit ae56da2b0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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));
}
}