Minor comments.

This commit is contained in:
Limnanthes Serafini 2023-04-12 02:57:42 -07:00
parent 095f3d5542
commit 3f9a22e8d4
2 changed files with 4 additions and 0 deletions

View File

@ -38,6 +38,7 @@
# With verbose mode on, the simulator logs each access into the cache.
# Add -p or --perf to report the hit/miss ratio.
# Add -d or --dist to report the distribution of loads, stores, and atomic ops.
# These distributions may not add up to 100; this is because of flushes or invalidations.
import sys
import math

View File

@ -32,6 +32,9 @@ import argparse
# NOTE: make sure testbench.sv has the ICache and DCache loggers enabled!
# This does not check the test output for correctness, run regression for that.
# Add -p or --perf to report the hit/miss ratio.
# Add -d or --dist to report the distribution of loads, stores, and atomic ops.
# These distributions may not add up to 100; this is because of flushes or invalidations.
class bcolors:
HEADER = '\033[95m'