diff --git a/stats.py b/stats.py index 77e6af0..2d45134 100644 --- a/stats.py +++ b/stats.py @@ -103,6 +103,6 @@ def replace_in_readme(mnemonic_count, opcode_count): print(fmt.format("Total", total_opcodes, total_implemented, total_opcodes - total_implemented, "{:.2f}%".format(total_implemented / total_opcodes * 100), total_test_cases)) -print(f"{total_full} implemented mnemonics, {total_partial} partially implemented mnemonics -> {total_full + total_partial} implemented mnemonics") +print(f"{total_full} fully implemented, {total_partial} partially implemented mnemonics -> {total_full + total_partial} total") replace_in_readme(total_full + total_partial, total_implemented)