summaryrefslogtreecommitdiffstats
path: root/tis100.c
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2023-12-25 01:56:01 +0100
committerLouis Burda <quent.burda@gmail.com>2023-12-25 01:56:01 +0100
commitf2ada47e6be185cc31c475c996c4ccf6735f7bb0 (patch)
treef39aa55ab0585c376d608dad922efe71f9d640a2 /tis100.c
parent5ff5bb25cc864e7fa06aa8fed0c4ec92e99f103a (diff)
downloadtis100-f2ada47e6be185cc31c475c996c4ccf6735f7bb0.tar.gz
tis100-f2ada47e6be185cc31c475c996c4ccf6735f7bb0.zip
fixup! Make mode/state behaviour compatible with game
Diffstat (limited to 'tis100.c')
-rw-r--r--tis100.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tis100.c b/tis100.c
index b79567a..ce2cb75 100644
--- a/tis100.c
+++ b/tis100.c
@@ -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");
}