diff options
| author | Louis Burda <quent.burda@gmail.com> | 2023-12-25 01:56:01 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2023-12-25 01:56:01 +0100 |
| commit | f2ada47e6be185cc31c475c996c4ccf6735f7bb0 (patch) | |
| tree | f39aa55ab0585c376d608dad922efe71f9d640a2 /tis100.c | |
| parent | 5ff5bb25cc864e7fa06aa8fed0c4ec92e99f103a (diff) | |
| download | tis100-f2ada47e6be185cc31c475c996c4ccf6735f7bb0.tar.gz tis100-f2ada47e6be185cc31c475c996c4ccf6735f7bb0.zip | |
fixup! Make mode/state behaviour compatible with game
Diffstat (limited to 'tis100.c')
| -rw-r--r-- | tis100.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -58,8 +58,8 @@ main(int argc, const char **argv) stats = tis_gen_stats(&tis); printf("=== stats ===\n"); printf(" cycles: %zu\n", stats.steps); - printf(" blocks: %zu\n", stats.blocks); - printf(" insts: %zu\n", stats.blocks); + printf(" nodes: %zu\n", stats.nodes); + printf(" insts: %zu\n", stats.nodes); printf(" idle: %2.1f%%\n", stats.idle * 100); printf("=============\n"); } |
