Added usage string.

This commit is contained in:
Jacob 2016-04-25 17:45:52 -04:00
parent 210eeb05dd
commit 0a3f87840d
1 changed files with 8 additions and 1 deletions

9
csim.c
View File

@ -4,7 +4,14 @@
void print_usage()
{
printf("Usage:\n");
printf("Usage: ./csim [-hv] -s <number> -E <number> -b <number> -t <file>\n"
"Options:\n"
" -h Print this help.\n"
" -v Display trace info.\n"
" -s <number> The number of sets is the base-2 logarithm of this argument.\n"
" -E <number> Associativity (lines per set).\n"
" -b <number> Block size in bits is the base-2 logarithm of this argument.\n"
" -t <file> Name of the file to read a valgrind trace from.");
exit(0);
}